/linux/fs/xfs/ |
H A D | xfs_health.c | 29 unsigned int checked = 0; in xfs_health_unmount_group() local 31 xfs_group_measure_sickness(xg, &sick, &checked); in xfs_health_unmount_group() 50 unsigned int checked = 0; in xfs_health_unmount() local 68 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount() 116 /* Mark per-fs metadata as having been checked and found unhealthy by fsck. */ 153 unsigned int *checked) in xfs_fs_measure_sickness() argument 157 *checked = mp->m_fs_checked; in xfs_fs_measure_sickness() 204 * Mark per-group metadata as having been checked and found unhealthy by fsck. 244 unsigned int *checked) in xfs_group_measure_sickness() argument 248 *checked = xg->xg_checked; in xfs_group_measure_sickness() [all …]
|
/linux/fs/xfs/libxfs/ |
H A D | xfs_health.h | 27 * "checked" field tell us if a given piece of metadata has ever been examined, 31 * - checked && sick => metadata needs repair 32 * - checked && !sick => metadata is ok 33 * - !checked && sick => errors have been observed during normal operation, 34 * but the metadata has not been checked thoroughly 35 * - !checked && !sick => has not been examined since mount 184 * xfs_*_mark_sick: Set the sick flags and do not set checked flags. 188 * xfs_*_mark_corrupt: Set the sick and checked flags simultaneously. 192 * xfs_*_mark_healthy: Clear the sick flags and set the checked flags. 203 unsigned int *checked); [all …]
|
/linux/include/linux/ |
H A D | wait.h | 339 * @condition evaluates to true. The @condition is checked each time 379 * @condition is checked each time the waitqueue @wq_head is woken up. 405 * @condition evaluates to true. The @condition is checked each time 469 * @condition evaluates to true. The @condition is checked each time 493 * The @condition is checked each time the waitqueue @wq_head is woken up. 523 * The @condition is checked each time the waitqueue @wq_head is woken up. 578 * The @condition is checked each time the waitqueue @wq_head is woken up. 604 * The @condition is checked each time the waitqueue @wq is woken up. 669 * The @condition is checked each time the waitqueue @wq_head is woken up. 689 * The @condition is checked each time the waitqueue @wq_head is woken up. [all …]
|
H A D | zstd.h | 184 * Return: Zero or an error, which can be checked using zstd_is_error(). 238 * Return: The compressed size or an error, which can be checked using 302 * Return: The compressed size or an error, which can be checked using 343 * Return: The decompressed size or an error, which can be checked using 406 * Return: The decompressed size or an error, which can be checked using 488 * Return: Zero or an error, which can be checked using 508 * function call or an error, which can be checked using 525 * error, which can be checked using zstd_is_error(). 539 * error, which can be checked using zstd_is_error(). 577 * Return: Zero or an error, which can be checked using zstd_is_error(). [all …]
|
H A D | wordpart.h | 38 * NOTE: @x is not checked for > 0xff; larger values produce odd results. 46 * NOTE: @x is not checked for > 0xff; larger values produce odd results.
|
/linux/drivers/pci/hotplug/ |
H A D | TODO | 5 * Returned code from pci_hp_add_bridge() is not checked. 17 * Returned code from pci_hp_add_bridge() is not checked. 36 * The return value of pci_hp_register() is not checked. 46 * Returned code from pci_hp_add_bridge() is not checked.
|
/linux/security/tomoyo/ |
H A 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/mm/kmsan/ |
H A D | core.c | 54 bool checked = poison_flags & KMSAN_POISON_CHECK; in kmsan_internal_poison_memory() local 58 kmsan_internal_set_shadow_origin(address, size, -1, handle, checked); in kmsan_internal_poison_memory() 61 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked) in kmsan_internal_unpoison_memory() argument 63 kmsan_internal_set_shadow_origin(address, size, 0, 0, checked); in kmsan_internal_unpoison_memory() 103 kmsan_internal_unpoison_memory(dst, n, /*checked*/ false); in kmsan_internal_memmove_metadata() 195 u32 origin, bool checked) in kmsan_internal_set_shadow_origin() argument 209 if (checked) { in kmsan_internal_set_shadow_origin()
|
H A D | kmsan.h | 97 * missing initialization events) kmsan_in_runtime() is not checked in 157 void kmsan_internal_unpoison_memory(void *address, size_t size, bool checked); 159 u32 origin, bool checked);
|
H A D | instrumentation.c | 127 kmsan_internal_unpoison_memory(addr, size, /*checked*/ false); in __msan_instrument_asm_store() 226 kmsan_internal_unpoison_memory(dst, n, /*checked*/ false); in __msan_memset() 290 /*checked*/ true); in __msan_poison_alloca() 303 kmsan_internal_unpoison_memory(address, size, /*checked*/ true); in __msan_unpoison_alloca()
|
H A D | hooks.c | 101 /*checked*/ true); in kmsan_kmalloc_large() 311 /*checked*/ false); in kmsan_handle_urb() 323 /*checked*/ false); in kmsan_handle_dma_page() 331 /*checked*/ false); in kmsan_handle_dma_page()
|
/linux/drivers/misc/lkdtm/ |
H A D | bugs.c | 382 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local 386 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS() 387 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS() 389 kfree(checked); in lkdtm_ARRAY_BOUNDS() 395 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS() 396 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS() 405 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS() 406 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS() 409 kfree(checked); in lkdtm_ARRAY_BOUNDS()
|
/linux/Documentation/core-api/ |
H A 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
|
H A 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/net/core/ |
H A 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/Documentation/virt/kvm/x86/ |
H A 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/drivers/sh/maple/ |
H A 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/Documentation/litmus-tests/ |
H A D | README | 45 Demonstrates that double-checked locking needs more than just 49 Demonstrates corrected double-checked locking that uses
|
/linux/drivers/net/wireless/intel/iwlwifi/cfg/ |
H A D | ax210.c | 76 /* TODO: the following values need to be checked */ 87 /* TODO: the following values need to be checked */
|
/linux/fs/xfs/scrub/ |
H A D | health.c | 318 unsigned int checked; in xchk_health_record() local 320 xfs_fs_measure_sickness(mp, &sick, &checked); in xchk_health_record() 325 xfs_group_measure_sickness(pag_group(pag), &sick, &checked); in xchk_health_record() 331 xfs_group_measure_sickness(rtg_group(rtg), &sick, &checked); in xchk_health_record()
|
/linux/drivers/infiniband/sw/siw/ |
H A D | siw_mem.c | 130 * @mem: memory to be checked 133 * @len: len of memory interval to be checked 179 * @sge: SGE to be checked 183 * @len: len of memory interval to be checked
|
/linux/net/netfilter/ipvs/ |
H A 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()
|
/linux/arch/x86/include/uapi/asm/ |
H A D | kvm_para.h | 15 * be checked in eax. The performance hint feature bit should be checked
|
/linux/net/sunrpc/xprtrdma/ |
H A D | svc_rdma_pcl.c | 91 * - The incoming Read list has already been sanity checked. 142 * - The incoming Read list has already been sanity checked. 194 * - The incoming Write list has already been sanity checked, and
|
/linux/fs/btrfs/ |
H A D | subpage.c | 524 checked, start, len); in btrfs_subpage_set_checked() 529 if (subpage_test_bitmap_all_set(fs_info, folio, checked)) in btrfs_subpage_set_checked() 539 checked, start, len); in btrfs_subpage_clear_checked() 572 IMPLEMENT_BTRFS_SUBPAGE_TEST_OP(checked); 670 IMPLEMENT_BTRFS_PAGE_OPS(checked, folio_set_checked, folio_clear_checked, 810 GET_SUBPAGE_BITMAP(fs_info, folio, checked, &checked_bitmap); in btrfs_subpage_dump_bitmap() 816 …%llu, bitmaps uptodate=%*pbl dirty=%*pbl locked=%*pbl writeback=%*pbl ordered=%*pbl checked=%*pbl", in btrfs_subpage_dump_bitmap()
|