/Linux-v6.6/fs/xfs/ |
D | xfs_health.c | 30 unsigned int checked = 0; in xfs_health_unmount() local 38 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_health_unmount() 46 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_health_unmount() 56 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount() 125 unsigned int *checked) in xfs_fs_measure_sickness() argument 129 *checked = mp->m_fs_checked; in xfs_fs_measure_sickness() 168 unsigned int *checked) in xfs_rt_measure_sickness() argument 172 *checked = mp->m_rt_checked; in xfs_rt_measure_sickness() 211 unsigned int *checked) in xfs_ag_measure_sickness() argument 215 *checked = pag->pag_checked; in xfs_ag_measure_sickness() [all …]
|
/Linux-v6.6/fs/xfs/libxfs/ |
D | xfs_health.h | 105 unsigned int *checked); 110 unsigned int *checked); 115 unsigned int *checked); 120 unsigned int *checked); 129 unsigned int sick, checked; in xfs_fs_has_sickness() local 131 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_fs_has_sickness() 138 unsigned int sick, checked; in xfs_rt_has_sickness() local 140 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_rt_has_sickness() 147 unsigned int sick, checked; in xfs_ag_has_sickness() local 149 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_ag_has_sickness() [all …]
|
/Linux-v6.6/drivers/misc/lkdtm/ |
D | bugs.c | 325 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local 329 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS() 330 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS() 332 kfree(checked); in lkdtm_ARRAY_BOUNDS() 338 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS() 339 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS() 348 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS() 349 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS() 352 kfree(checked); in lkdtm_ARRAY_BOUNDS()
|
/Linux-v6.6/security/tomoyo/ |
D | condition.c | 27 u8 *checked) in tomoyo_argv() argument 33 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv() 38 *checked = 1; in tomoyo_argv() 62 u8 *checked) in tomoyo_envp() argument 72 for (i = 0; i < envc; envp++, checked++, i++) { in tomoyo_envp() 77 *checked = 1; in tomoyo_envp() 119 u8 *checked; in tomoyo_scan_bprm() local 122 checked = local_checked; in tomoyo_scan_bprm() 125 checked = kzalloc(argc + envc, GFP_NOFS); in tomoyo_scan_bprm() 126 if (!checked) in tomoyo_scan_bprm() [all …]
|
/Linux-v6.6/mm/kmsan/ |
D | core.c | 55 bool checked = poison_flags & KMSAN_POISON_CHECK; in kmsan_internal_poison_memory() local 59 kmsan_internal_set_shadow_origin(address, size, -1, handle, checked); in kmsan_internal_poison_memory() 62 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked) in kmsan_internal_unpoison_memory() argument 64 kmsan_internal_set_shadow_origin(address, size, 0, 0, checked); in kmsan_internal_unpoison_memory() 262 u32 origin, bool checked) in kmsan_internal_set_shadow_origin() argument 276 if (checked) { in kmsan_internal_set_shadow_origin()
|
D | kmsan.h | 181 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked); 183 u32 origin, bool checked);
|
/Linux-v6.6/drivers/sh/maple/ |
D | maple.c | 59 static bool checked[MAPLE_PORTS]; variable 471 if (checked[x] && empty[x]) { in maple_vblank_handler() 562 if (checked[mdev->port] == false) { in maple_response_none() 563 checked[mdev->port] = true; in maple_response_none() 581 if ((mdev->unit == 0) && (checked[mdev->port] == false)) { in maple_response_devinfo() 582 checked[mdev->port] = true; in maple_response_devinfo() 620 if (checked[i] == false) { in maple_port_rescan() 840 checked[i] = false; in maple_bus_init()
|
/Linux-v6.6/Documentation/filesystems/ |
D | ocfs2-online-filecheck.rst | 52 communicate with kernel space, tell which file(inode number) will be checked or 94 the inode must first be checked for errors before performing a final fix. 98 fixed/checked, the detailed errors which were fixed/checked are printed in the
|
/Linux-v6.6/scripts/ |
D | spdxcheck.py | 109 self.checked = 0 198 self.checked += 1 410 sys.stderr.write('Files checked: %12d\n' %parser.checked) 412 if parser.checked: 413 pc = int(100 * parser.spdx_valid / parser.checked)
|
/Linux-v6.6/Documentation/sphinx-static/ |
D | custom.css | 56 input[type=checkbox]:checked ~ label.kernel-toc-title:after { 70 input[type=checkbox]:checked ~ div.kerneltoc {
|
/Linux-v6.6/ |
D | Kbuild | 61 atomic-checks += $(addprefix $(obj)/.checked-, \ 67 $(atomic-checks): $(obj)/.checked-%: include/linux/atomic/% FORCE
|
/Linux-v6.6/fs/btrfs/ |
D | subpage.c | 532 checked, start, len); in btrfs_subpage_set_checked() 537 if (subpage_test_bitmap_all_set(fs_info, subpage, checked)) in btrfs_subpage_set_checked() 547 checked, start, len); in btrfs_subpage_clear_checked() 580 IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(checked); 650 IMPLEMENT_BTRFS_PAGE_OPS(checked, SetPageChecked, ClearPageChecked, PageChecked); 741 GET_SUBPAGE_BITMAP(subpage, subpage_info, checked, &checked_bitmap); in btrfs_subpage_dump_bitmap()
|
/Linux-v6.6/Documentation/core-api/ |
D | errseq.rst | 37 record the state at the time that it was checked. This allows us to 39 can tell whether the value has changed since they last checked it. 111 whether one was made since they last checked, and the latest value 154 since the last time it was checked.
|
D | debug-objects.rst | 73 When the real object is already tracked by debugobjects it is checked, 96 When the real object is already tracked by debugobjects it is checked, 120 When the real object is already tracked by debugobjects it is checked, 145 When the real object is tracked by debugobjects it is checked, whether 160 When the real object is tracked by debugobjects it is checked, whether 176 When the real object is tracked by debugobjects it is checked, whether
|
/Linux-v6.6/drivers/md/bcache/ |
D | alloc.c | 219 size_t checked = 0; in invalidate_buckets_fifo() local 231 if (++checked >= ca->sb.nbuckets) { in invalidate_buckets_fifo() 242 size_t checked = 0; in invalidate_buckets_random() local 257 if (++checked >= ca->sb.nbuckets / 2) { in invalidate_buckets_random()
|
/Linux-v6.6/Documentation/litmus-tests/locking/ |
D | DCL-broken.litmus | 7 * correctly implement double-checked locking.
|
D | DCL-fixed.litmus | 6 * This litmus test demonstrates that double-checked locking can be
|
/Linux-v6.6/Documentation/driver-api/firmware/ |
D | lookup-order.rst | 9 * The ''Built-in firmware'' is checked first, if the firmware is present we
|
/Linux-v6.6/Documentation/input/devices/ |
D | walkera0701.rst | 127 calculated by sum of binary values in checked nibbles + sum of octal values 128 in checked nibbles divided by 8. Only bit 0 of this sum is used.
|
/Linux-v6.6/scripts/kconfig/tests/preprocess/variable/ |
D | Kconfig | 47 # The number of arguments is not checked for user-defined functions.
|
/Linux-v6.6/arch/arm/boot/dts/synaptics/ |
D | berlin2cd-google-chromecast.dts | 31 * normally. Fortunately, this alternate property is checked
|
/Linux-v6.6/Documentation/w1/slaves/ |
D | w1_ds2406.rst | 26 CRCs are checked on read and write. Failed checks cause an I/O error to be
|
/Linux-v6.6/scripts/coccinelle/misc/ |
D | orplus.cocci | 3 /// The results should be checked manually to ensure that the nonzero
|
/Linux-v6.6/Documentation/userspace-api/media/dvb/ |
D | dmx-set-filter.rst | 39 state whether a section should be CRC-checked, whether the filter should
|
/Linux-v6.6/Documentation/scheduler/ |
D | sched-stats.rst | 80 2) # of times in this domain load_balance() checked but found 96 10) # of times in this domain load_balance() checked but found the 112 18) # of times in this domain load_balance() checked but found the
|