Home
last modified time | relevance | path

Searched full:exist (Results 1 – 25 of 2501) sorted by relevance

12345678910>>...101

/linux-6.14.4/tools/testing/selftests/damon/
Dsysfs.sh39 if [ "$to_ensure" = "exist" ] && [ ! -d "$dir" ]
55 if [ "$to_ensure" = "exist" ]
78 ensure_dir "$range_dir" "exist"
79 ensure_file "$range_dir/min" "exist" 600
80 ensure_file "$range_dir/max" "exist" 600
86 ensure_dir "$tried_regions_dir" "exist"
87 ensure_file "$tried_regions_dir/total_bytes" "exist" "400"
93 ensure_dir "$stats_dir" "exist"
96 ensure_file "$stats_dir/$f" "exist" "400"
103 ensure_file "$filter_dir/type" "exist" "600"
[all …]
/linux-6.14.4/net/ceph/
Dstring_table.c13 struct ceph_string *cs, *exist; in ceph_find_or_create_string() local
17 exist = NULL; in ceph_find_or_create_string()
21 exist = rb_entry(*p, struct ceph_string, node); in ceph_find_or_create_string()
22 ret = ceph_compare_string(exist, str, len); in ceph_find_or_create_string()
29 exist = NULL; in ceph_find_or_create_string()
31 if (exist && !kref_get_unless_zero(&exist->kref)) { in ceph_find_or_create_string()
32 rb_erase(&exist->node, &string_tree); in ceph_find_or_create_string()
33 RB_CLEAR_NODE(&exist->node); in ceph_find_or_create_string()
34 exist = NULL; in ceph_find_or_create_string()
37 if (exist) in ceph_find_or_create_string()
[all …]
/linux-6.14.4/Documentation/dev-tools/
Dtesting-devices.rst37 * Exist (``devices/exist``)
40 * **Requirements**: Generate the reference (see ``devices/exist/README.rst``
45 improve coverage, generate the reference for each platform and enable the exist
/linux-6.14.4/tools/testing/selftests/bpf/prog_tests/
Dfd_array.c188 /* maps should still exist when original file descriptors are closed */ in check_fd_array_cnt__fd_array_ok()
191 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map_ids[0] should exist")) in check_fd_array_cnt__fd_array_ok()
193 if (!ASSERT_EQ(map_exists(map_ids[1]), true, "map_ids[1] should exist")) in check_fd_array_cnt__fd_array_ok()
227 /* maps should still exist when original file descriptors are closed */ in check_fd_array_cnt__duplicated_maps()
230 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map should exist")) in check_fd_array_cnt__duplicated_maps()
232 if (!ASSERT_EQ(map_exists(map_ids[1]), true, "map should exist")) in check_fd_array_cnt__duplicated_maps()
263 /* map should still exist when original file descriptor is closed */ in check_fd_array_cnt__referenced_maps_in_fd_array()
265 if (!ASSERT_EQ(map_exists(map_ids[0]), true, "map should exist")) in check_fd_array_cnt__referenced_maps_in_fd_array()
313 /* btf should still exist when original file descriptor is closed */ in check_fd_array_cnt__referenced_btfs()
323 if (!ASSERT_EQ(btf_exists(btf_id), true, "btf should exist")) in check_fd_array_cnt__referenced_btfs()
/linux-6.14.4/drivers/hid/
Dhid-roccat.c43 int exist; member
99 if (!device->exist) { in roccat_read()
143 if (!reader->device->exist) in roccat_poll()
164 pr_emerg("roccat device with minor %d doesn't exist\n", minor); in roccat_open()
214 pr_emerg("roccat device with minor %d doesn't exist\n", minor); in roccat_release()
225 if (device->exist) { in roccat_release()
344 device->exist = 1; in roccat_connect()
363 device->exist = 0; /* TODO exist maybe not needed */ in roccat_disconnect()
Dhidraw.c67 if (!list->hidraw->exist) { in hidraw_read()
122 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_send_report()
201 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_get_report()
271 if (!list->hidraw->exist || hidraw_is_revoked(list)) in hidraw_poll()
295 if (!hidraw_table[minor] || !hidraw_table[minor]->exist) { in hidraw_open()
344 hidraw->exist = 0; in drop_ref()
355 if (!hidraw->exist) { in drop_ref()
409 if (!dev || !dev->exist || hidraw_is_revoked(list)) { in hidraw_ioctl()
626 dev->exist = 1; in hidraw_connect()
/linux-6.14.4/fs/btrfs/
Dref-verify.c29 * These are meant to represent what should exist in the extent tree, these can
267 struct block_entry *be = NULL, *exist; in add_block_entry() local
284 exist = insert_block_entry(&fs_info->block_tree, be); in add_block_entry()
285 if (exist) { in add_block_entry()
289 exist_re = insert_root_entry(&exist->roots, re); in add_block_entry()
296 return exist; in add_block_entry()
317 struct ref_entry *ref = NULL, *exist; in add_tree_block() local
347 exist = insert_ref_entry(&be->refs, ref); in add_tree_block()
348 if (exist) { in add_tree_block()
349 exist->num_refs++; in add_tree_block()
[all …]
Ddelayed-ref.c320 static int cmp_refs_node(const struct rb_node *new, const struct rb_node *exist) in cmp_refs_node() argument
325 rb_entry(exist, struct btrfs_delayed_ref_node, ref_node); in cmp_refs_node()
334 struct rb_node *exist; in tree_insert() local
336 exist = rb_find_add_cached(node, root, cmp_refs_node); in tree_insert()
337 if (exist) in tree_insert()
338 return rb_entry(exist, struct btrfs_delayed_ref_node, ref_node); in tree_insert()
590 struct btrfs_delayed_ref_node *exist; in insert_delayed_ref() local
594 exist = tree_insert(&href->ref_tree, ref); in insert_delayed_ref()
595 if (!exist) { in insert_delayed_ref()
604 if (exist->action == ref->action) { in insert_delayed_ref()
[all …]
/linux-6.14.4/fs/ceph/
Dsnap.c1192 struct ceph_snapid_map *sm, *exist; in ceph_get_snapid_map() local
1196 exist = NULL; in ceph_get_snapid_map()
1200 exist = rb_entry(*p, struct ceph_snapid_map, node); in ceph_get_snapid_map()
1201 if (snap > exist->snap) { in ceph_get_snapid_map()
1203 } else if (snap < exist->snap) { in ceph_get_snapid_map()
1206 if (atomic_inc_return(&exist->ref) == 1) in ceph_get_snapid_map()
1207 list_del_init(&exist->lru); in ceph_get_snapid_map()
1210 exist = NULL; in ceph_get_snapid_map()
1213 if (exist) { in ceph_get_snapid_map()
1214 doutc(cl, "found snapid map %llx -> %x\n", exist->snap, in ceph_get_snapid_map()
[all …]
/linux-6.14.4/arch/arm/mach-omap2/
Dvoltage.c55 pr_warn("%s: VDD specified does not exist!\n", __func__); in voltdm_get_voltage()
77 pr_warn("%s: VDD specified does not exist!\n", __func__); in voltdm_scale()
128 pr_warn("%s: VDD specified does not exist!\n", __func__); in voltdm_reset()
158 pr_warn("%s: VDD specified does not exist!\n", __func__); in omap_voltage_get_volttable()
186 pr_warn("%s: VDD specified does not exist!\n", __func__); in omap_voltage_get_voltdata()
191 pr_warn("%s: voltage table does not exist for vdd_%s\n", in omap_voltage_get_voltdata()
220 pr_warn("%s: VDD specified does not exist!\n", __func__); in omap_voltage_register_pmic()
/linux-6.14.4/Documentation/devicetree/bindings/powerpc/
Dibm,powerpc-cpu-features.txt107 If bit 0 is set, then the hwcap-bit-nr property will exist.
119 feature to lesser privilege levels. If the property does not exist then no
125 If the HFSCR bit is set, then the hfscr-bit-nr property will exist and
138 feature to lesser privilege levels. If the property does not exist then no
144 If the FSCR bit is set, then the fscr-bit-nr property will exist and
179 This property may exist when the usable-privilege property value has PR bit set.
/linux-6.14.4/tools/testing/selftests/pstore/
Dpstore_post_reboot_tests40 prlog -n "Checking dmesg files exist in pstore filesystem ... "
43 prlog -n "Checking console files exist in pstore filesystem ... "
46 prlog -n "Checking pmsg files exist in pstore filesystem ... "
/linux-6.14.4/drivers/usb/serial/
Dio_edgeport.h34 __u32 IsRS232 :1; /* Set if RS-232 ports exist */
35 __u32 IsRS422 :1; /* Set if RS-422 ports exist */
36 __u32 IsRS485 :1; /* Set if RS-485 ports exist */
/linux-6.14.4/Documentation/devicetree/bindings/regulator/
Dmediatek,mt6358-regulator.yaml151 # vsram_core regulator doesn't exist on MT6358
155 # vm18 and vmddr regulators don't exist on MT6358
170 # vcam* regulators don't exist on MT6366
174 # vldo28 regulator doesn't exist on MT6366
176 # vs2_ldo4 supply pin doesn't exist on MT6366
/linux-6.14.4/tools/testing/selftests/ftrace/test.d/ftrace/
Dfunc_mod_trace.tc6 : "mod: allows to filter a non exist function"
10 : "mod: on exist module"
/linux-6.14.4/tools/testing/selftests/rtc/
Drtctest.c51 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F()
116 SKIP(return, "Skipping test since %s does not exist", rtc_file);
154 SKIP(return, "Skipping test since %s does not exist", rtc_file);
183 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F()
227 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F()
295 SKIP(return, "Skipping test since %s does not exist", rtc_file); in TEST_F()
357 SKIP(return, "Skipping test since %s does not exist", rtc_file);
425 SKIP(return, "Skipping test since %s does not exist", rtc_file);
/linux-6.14.4/include/uapi/linux/netfilter/ipset/
Dip_set_list.h9 /* Set name to be added/deleted/tested does not exist. */
15 /* Reference set does not exist */
/linux-6.14.4/Documentation/admin-guide/mm/damon/
Dusage.rst124 (``contexts``) exist.
178 exist.
200 Specifically, two directories, ``intervals`` and ``nr_regions`` exist in this
205 (``update_us``) exist. You can set and get the values in micro-seconds by
210 controls the monitoring overhead, exist. You can set and get the values by
231 (``regions``) exist.
287 (``action``, ``target_nid`` and ``apply_interval``) exist.
311 exist. You can set and get the access pattern for the given scheme by writing
326 ``goals``) exist.
347 ``nr_accesses_permil``, and ``age_permil``) exist.
[all …]
/linux-6.14.4/drivers/acpi/
Dpptt.c189 * how many levels exist solely for it, and then walk up each level until we hit
191 * caches that exist across packages). Count the number of cache levels and
192 * split cache levels (data/instruction) that exist at each level on the way
581 * Return: -ENOENT if the PPTT doesn't exist, the CPU cannot be found or
685 * -ENOENT ,if the PPTT doesn't exist, the CPU cannot be found or
708 * Return: -ENOENT if the PPTT doesn't exist, or the CPU cannot be found.
726 * Return: -ENOENT if the PPTT doesn't exist, or the CPU cannot be found.
744 * It may not exist in single CPU systems. In simple multi-CPU systems,
747 * Return: -ENOENT if the PPTT doesn't exist, the CPU cannot be found
806 * Return: -ENOENT if the PPTT doesn't exist, or the CPU cannot be found.
/linux-6.14.4/include/soc/fsl/
Dcpm.h61 #define CPMFCR_GBL ((u_char)0x00) /* Flag doesn't exist in CPM1 */
62 #define CPMFCR_TC2 ((u_char)0x00) /* Flag doesn't exist in CPM1 */
63 #define CPMFCR_DTB ((u_char)0x00) /* Flag doesn't exist in CPM1 */
64 #define CPMFCR_BDB ((u_char)0x00) /* Flag doesn't exist in CPM1 */
/linux-6.14.4/tools/perf/tests/shell/
Dbuildid.sh75 echo "failed: link ${link} does not exist"
87 echo "failed: file ${file} executable does not exist"
92 echo "failed: file ${file} does not exist"
96 echo "failed: file ${file} does not exist"
/linux-6.14.4/fs/xfs/libxfs/
Dxfs_metadir.c129 * component doesn't exist, return -ENOENT.
230 * component must already exist. The final path component must not exist.
261 /* Check that the name does not already exist in the directory. */ in xfs_metadir_create()
364 * The path (up to the final component) must already exist, but the final
365 * component must not already exist.
/linux-6.14.4/drivers/platform/chrome/wilco_ec/
Devent.c179 * @exist: Has the device been not been removed? Once a device has been removed,
195 bool exist; member
309 if (!dev_data->exist) in event_open()
329 if (!dev_data->exist) in event_poll()
372 !dev_data->exist); in event_read()
377 if (!dev_data->exist) in event_read()
428 dev_data->exist = false; in hangup_device()
476 dev_data->exist = true; in event_device_add()
/linux-6.14.4/drivers/net/wan/
Dhdlc_fr.c13 (exist,new) -> 0,0 when "PVC create" or if "link unreliable"
18 -> 1 when "PVC up" and (exist,new) = 1,0
21 (exist,new,active) = FULL STATUS if "link reliable"
25 exist = new = not used
123 unsigned int exist: 1; member
446 !pvc->state.exist ? "deleted" : in fr_log_dlci_active()
509 if (state(hdlc)->reliable && !pvc->state.exist) { in fr_lmi_send()
510 pvc->state.exist = pvc->state.new = 1; in fr_lmi_send()
516 pvc->state.exist && !pvc->state.new) { in fr_lmi_send()
564 pvc->state.exist = pvc->state.active = 1; in fr_set_link_state()
[all …]
/linux-6.14.4/drivers/gpu/drm/i915/gt/
Dintel_sseu.h19 * Maximum number of slices on older platforms. Slices no longer exist
26 * Maximum number of subslices that can exist within a HSW-style slice. This
39 /* Maximum number of EUs that can exist within a subslice or DSS. */

12345678910>>...101