/linux-6.8/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-6.8/fs/xfs/libxfs/ |
D | xfs_health.h | 25 * "checked" field tell us if a given piece of metadata has ever been examined, 29 * - checked && sick => metadata needs repair 30 * - checked && !sick => metadata is ok 31 * - !checked => has not been examined since mount 115 unsigned int *checked); 120 unsigned int *checked); 125 unsigned int *checked); 130 unsigned int *checked); 139 unsigned int sick, checked; in xfs_fs_has_sickness() local 141 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_fs_has_sickness() [all …]
|
/linux-6.8/include/linux/ |
D | wait.h | 333 * @condition evaluates to true. The @condition is checked each time 373 * @condition is checked each time the waitqueue @wq_head is woken up. 399 * @condition evaluates to true. The @condition is checked each time 463 * @condition evaluates to true. The @condition is checked each time 487 * The @condition is checked each time the waitqueue @wq_head is woken up. 517 * The @condition is checked each time the waitqueue @wq_head is woken up. 572 * The @condition is checked each time the waitqueue @wq_head is woken up. 598 * The @condition is checked each time the waitqueue @wq is woken up. 663 * The @condition is checked each time the waitqueue @wq_head is woken up. 683 * The @condition is checked each time the waitqueue @wq_head is woken up. [all …]
|
D | zstd.h | 177 * Return: The compressed size or an error, which can be checked using 217 * Return: The decompressed size or an error, which can be checked using 287 * Return: Zero or an error, which can be checked using 307 * function call or an error, which can be checked using 324 * error, which can be checked using zstd_is_error(). 338 * error, which can be checked using zstd_is_error(). 376 * Return: Zero or an error, which can be checked using zstd_is_error(). 397 * input for the next function call or an error, which can be checked 442 * an error, which can be checked using zstd_is_error().
|
/linux-6.8/security/tomoyo/ |
D | condition.c | 21 * @checked: Set to true if @argv[@index] was found. 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() 56 * @checked: Set to true if @envp[@env_name] was found. 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() [all …]
|
/linux-6.8/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-6.8/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() 104 kmsan_internal_unpoison_memory(dst, n, /*checked*/ false); in kmsan_internal_memmove_metadata() 196 u32 origin, bool checked) in kmsan_internal_set_shadow_origin() argument 210 if (checked) { in kmsan_internal_set_shadow_origin()
|
D | instrumentation.c | 126 kmsan_internal_unpoison_memory(addr, size, /*checked*/ false); in __msan_instrument_asm_store() 225 kmsan_internal_unpoison_memory(dst, n, /*checked*/ false); in __msan_memset() 289 /*checked*/ true); in __msan_poison_alloca() 302 kmsan_internal_unpoison_memory(address, size, /*checked*/ true); in __msan_unpoison_alloca()
|
D | kmsan.h | 120 * missing initialization events) kmsan_in_runtime() is not checked in 181 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked); 183 u32 origin, bool checked);
|
D | hooks.c | 103 /*checked*/ true); in kmsan_kmalloc_large() 300 /*checked*/ false); in kmsan_handle_urb() 312 /*checked*/ false); in kmsan_handle_dma_page() 320 /*checked*/ false); in kmsan_handle_dma_page()
|
/linux-6.8/Documentation/core-api/ |
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
|
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.
|
/linux-6.8/drivers/misc/lkdtm/ |
D | bugs.c | 352 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local 356 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS() 357 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS() 359 kfree(checked); in lkdtm_ARRAY_BOUNDS() 365 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS() 366 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS() 375 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS() 376 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS() 379 kfree(checked); in lkdtm_ARRAY_BOUNDS()
|
/linux-6.8/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/ |
D | memory.json | 36 …nts the number of memory read and write accesses in a cycle that are tag checked by the Memory Tag… 40 …ion": "Counts the number of memory read accesses in a cycle that are tag checked by the Memory Tag… 44 …ion": "Counts the number of memory write accesses in a cycle that is tag checked by the Memory Tag…
|
/linux-6.8/include/uapi/linux/usb/ |
D | ch9.h | 465 * @epd: endpoint to be checked 476 * @epd: endpoint to be checked 488 * @epd: endpoint to be checked 499 * @epd: endpoint to be checked 511 * @epd: endpoint to be checked 524 * @epd: endpoint to be checked 537 * @epd: endpoint to be checked 551 * @epd: endpoint to be checked 565 * @epd: endpoint to be checked 578 * @epd: endpoint to be checked [all …]
|
/linux-6.8/scripts/ |
D | spdxcheck.py | 109 self.checked = 0 198 self.checked += 1 410 sys.stderr.write('Files checked: %12d\n' %parser.checked) 411 sys.stderr.write('Lines checked: %12d\n' %parser.lines_checked) 412 if parser.checked: 413 pc = int(100 * parser.spdx_valid / parser.checked)
|
/linux-6.8/net/core/ |
D | of_net.c | 106 * checked first, because that is supposed to contain to "most recent" MAC 107 * address. If that isn't set, then 'local-mac-address' is checked next, 109 * 'address' is checked, just in case we're using an old device tree. If any
|
/linux-6.8/Documentation/virt/kvm/x86/ |
D | msr.rst | 56 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 128 of specific flags has to be checked in 0x40000001 cpuid leaf. 144 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 157 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid 169 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid
|
/linux-6.8/drivers/s390/crypto/ |
D | zcrypt_ep11misc.h | 61 * If checkcpacfexport is enabled, the key is also checked for the 70 * If checkcpacfexport is enabled, the key is also checked for the 80 * If checkcpacfexport is enabled, the key is also checked for the
|
/linux-6.8/tools/arch/x86/include/asm/ |
D | required-features.h | 4 /* Define minimum CPUID feature set for kernel These bits are checked 9 CONFIG_X86_MINIMUM_CPU_FAMILY which is checked too.
|
/linux-6.8/arch/x86/include/asm/ |
D | required-features.h | 4 /* Define minimum CPUID feature set for kernel These bits are checked 9 CONFIG_X86_MINIMUM_CPU_FAMILY which is checked too.
|
/linux-6.8/drivers/sh/maple/ |
D | maple.c | 59 static bool checked[MAPLE_PORTS]; variable 472 if (checked[x] && empty[x]) { in maple_vblank_handler() 563 if (checked[mdev->port] == false) { in maple_response_none() 564 checked[mdev->port] = true; in maple_response_none() 582 if ((mdev->unit == 0) && (checked[mdev->port] == false)) { in maple_response_devinfo() 583 checked[mdev->port] = true; in maple_response_devinfo() 621 if (checked[i] == false) { in maple_port_rescan() 840 checked[i] = false; in maple_bus_init()
|
/linux-6.8/arch/powerpc/platforms/maple/ |
D | pci.c | 131 * Note: the caller has already checked that offset is in u3_agp_read_config() 162 * Note: the caller has already checked that offset is in u3_agp_write_config() 275 * Note: the caller has already checked that offset is in u3_ht_read_config() 312 * Note: the caller has already checked that offset is in u3_ht_write_config() 386 * Note: the caller has already checked that offset is in u4_pcie_read_config() 417 * Note: the caller has already checked that offset is in u4_pcie_write_config()
|
/linux-6.8/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
|
/linux-6.8/net/netfilter/ipvs/ |
D | ip_vs_wrr.c | 34 * Then cw is reduced with di and all dests are checked again. 175 /* Stop only after all dests were checked for weight >= 1 (last pass) */ in ip_vs_wrr_schedule() 191 * then all dests were checked for w >= 1 in ip_vs_wrr_schedule()
|