| /kernel/linux/linux-5.10/fs/xfs/ |
| D | xfs_health.c | 30 unsigned int checked = 0; in xfs_health_unmount() local 39 xfs_ag_measure_sickness(pag, &sick, &checked); in xfs_health_unmount() 48 xfs_rt_measure_sickness(mp, &sick, &checked); in xfs_health_unmount() 58 xfs_fs_measure_sickness(mp, &sick, &checked); in xfs_health_unmount() 127 unsigned int *checked) in xfs_fs_measure_sickness() argument 131 *checked = mp->m_fs_checked; in xfs_fs_measure_sickness() 170 unsigned int *checked) in xfs_rt_measure_sickness() argument 174 *checked = mp->m_rt_checked; in xfs_rt_measure_sickness() 213 unsigned int *checked) in xfs_ag_measure_sickness() argument 217 *checked = pag->pag_checked; in xfs_ag_measure_sickness() [all …]
|
| /kernel/linux/linux-5.10/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 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() [all …]
|
| /kernel/linux/linux-4.19/include/linux/ |
| D | wait.h | 280 * @condition evaluates to true. The @condition is checked each time 320 * @condition is checked each time the waitqueue @wq_head is woken up. 346 * @condition evaluates to true. The @condition is checked each time 410 * @condition evaluates to true. The @condition is checked each time 434 * The @condition is checked each time the waitqueue @wq_head is woken up. 464 * The @condition is checked each time the waitqueue @wq_head is woken up. 518 * The @condition is checked each time the waitqueue @wq_head is woken up. 544 * The @condition is checked each time the waitqueue @wq is woken up. 609 * The @condition is checked each time the waitqueue @wq_head is woken up. 629 * The @condition is checked each time the waitqueue @wq_head is woken up. [all …]
|
| /kernel/linux/linux-4.19/tools/lib/api/fs/ |
| D | fs.c | 93 bool checked; member 115 .checked = false, 121 .checked = false, 127 .checked = false, 133 .checked = false, 139 .checked = false, 145 .checked = false, 168 fs->checked = true; in fs__read_mounts() 231 fs->checked = true; in fs__env_override() 258 /* the mount point was already checked for the mount point in fs__mountpoint() [all …]
|
| /kernel/linux/linux-5.10/tools/lib/api/fs/ |
| D | fs.c | 93 bool checked; member 115 .checked = false, 121 .checked = false, 127 .checked = false, 133 .checked = false, 139 .checked = false, 145 .checked = false, 168 fs->checked = true; in fs__read_mounts() 231 fs->checked = true; in fs__env_override() 258 /* the mount point was already checked for the mount point in fs__mountpoint() [all …]
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | wait.h | 324 * @condition evaluates to true. The @condition is checked each time 364 * @condition is checked each time the waitqueue @wq_head is woken up. 390 * @condition evaluates to true. The @condition is checked each time 454 * @condition evaluates to true. The @condition is checked each time 478 * The @condition is checked each time the waitqueue @wq_head is woken up. 508 * The @condition is checked each time the waitqueue @wq_head is woken up. 562 * The @condition is checked each time the waitqueue @wq_head is woken up. 588 * The @condition is checked each time the waitqueue @wq is woken up. 653 * The @condition is checked each time the waitqueue @wq_head is woken up. 673 * The @condition is checked each time the waitqueue @wq_head is woken up. [all …]
|
| /kernel/linux/linux-5.10/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 …]
|
| /kernel/linux/linux-4.19/security/tomoyo/ |
| D | condition.c | 21 * @checked: Set to true if @argv[@index] was found. 27 u8 *checked) in tomoyo_argv() argument 32 for (i = 0; i < argc; argv++, checked++, i++) { in tomoyo_argv() 36 *checked = 1; in tomoyo_argv() 54 * @checked: Set to true if @envp[@env_name] was found. 60 u8 *checked) in tomoyo_envp() argument 69 for (i = 0; i < envc; envp++, checked++, i++) { in tomoyo_envp() 73 *checked = 1; in tomoyo_envp() 115 u8 *checked; in tomoyo_scan_bprm() local 117 checked = local_checked; in tomoyo_scan_bprm() [all …]
|
| /kernel/linux/linux-5.10/drivers/misc/lkdtm/ |
| D | bugs.c | 229 struct array_bounds *checked; in lkdtm_ARRAY_BOUNDS() local 233 checked = kmalloc(sizeof(*checked) * 2, GFP_KERNEL); in lkdtm_ARRAY_BOUNDS() 234 if (!not_checked || !checked) { in lkdtm_ARRAY_BOUNDS() 236 kfree(checked); in lkdtm_ARRAY_BOUNDS() 242 for (i = 0; i < sizeof(checked->data); i++) in lkdtm_ARRAY_BOUNDS() 243 checked->data[i] = 'A'; in lkdtm_ARRAY_BOUNDS() 252 for (i = 0; i < sizeof(checked->data) + 1; i++) in lkdtm_ARRAY_BOUNDS() 253 checked->data[i] = 'B'; in lkdtm_ARRAY_BOUNDS() 256 kfree(checked); in lkdtm_ARRAY_BOUNDS()
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/mfd/ |
| D | allwinner,sun8i-a23-prcm.yaml | 50 # Already checked in the main schema 84 # Already checked in the main schema 115 # Already checked in the main schema 134 # Already checked in the main schema
|
| D | allwinner,sun6i-a31-prcm.yaml | 48 # Already checked in the main schema 82 # Already checked in the main schema 113 # Already checked in the main schema 146 # Already checked in the main schema
|
| /kernel/linux/linux-4.19/Documentation/filesystems/ |
| D | ocfs2-online-filecheck.txt | 49 communicate with kernel space, tell which file(inode number) will be checked or 89 the inode must first be checked for errors before performing a final fix. 93 fixed/checked, the detailed errors which were fixed/checked are printed in the
|
| /kernel/linux/linux-5.10/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
|
| /kernel/linux/linux-5.10/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.
|
| /kernel/linux/linux-4.19/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.
|
| /kernel/linux/linux-4.19/drivers/of/ |
| D | of_net.c | 53 * checked first, because that is supposed to contain to "most recent" MAC 54 * address. If that isn't set, then 'local-mac-address' is checked next, 56 * 'address' is checked, just in case we're using an old device tree.
|
| /kernel/linux/linux-5.10/drivers/of/ |
| D | of_net.c | 83 * checked first, because that is supposed to contain to "most recent" MAC 84 * address. If that isn't set, then 'local-mac-address' is checked next, 86 * 'address' is checked, just in case we're using an old device tree. If any
|
| /kernel/linux/linux-4.19/include/uapi/linux/usb/ |
| D | ch9.h | 458 * @epd: endpoint to be checked 469 * @epd: endpoint to be checked 481 * @epd: endpoint to be checked 492 * @epd: endpoint to be checked 504 * @epd: endpoint to be checked 517 * @epd: endpoint to be checked 530 * @epd: endpoint to be checked 544 * @epd: endpoint to be checked 558 * @epd: endpoint to be checked 571 * @epd: endpoint to be checked [all …]
|
| /kernel/linux/linux-5.10/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 …]
|
| /kernel/linux/linux-4.19/scripts/ |
| D | spdxcheck.py | 92 self.checked = 0 167 self.checked += 1 276 sys.stderr.write('Files checked: %12d\n' %parser.checked) 277 sys.stderr.write('Lines checked: %12d\n' %parser.lines_checked)
|
| /kernel/linux/linux-4.19/Documentation/virtual/kvm/ |
| D | msr.txt | 47 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 111 of specific flags has to be checked in 0x40000001 cpuid leaf. 125 Availability of this MSR must be checked via bit 3 in 0x4000001 cpuid 136 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid 146 Availability of this MSR must be checked via bit 0 in 0x4000001 cpuid
|
| /kernel/linux/linux-5.10/scripts/ |
| D | spdxcheck.py | 93 self.checked = 0 168 self.checked += 1 286 sys.stderr.write('Files checked: %12d\n' %parser.checked) 287 sys.stderr.write('Lines checked: %12d\n' %parser.lines_checked)
|
| /kernel/linux/linux-5.10/mm/ |
| D | Kconfig.debug | 21 Also, the state of page tracking structures is checked more often as 137 <arch>/mm: Checked W+X mappings: passed, no W+X pages found. 141 <arch>/mm: Checked W+X mappings: failed, <N> W+X pages found.
|