| /kernel/linux/linux-6.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 …]
|
| /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-6.6/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-6.6/include/linux/ |
| D | wait.h | 338 * @condition evaluates to true. The @condition is checked each time 378 * @condition is checked each time the waitqueue @wq_head is woken up. 404 * @condition evaluates to true. The @condition is checked each time 468 * @condition evaluates to true. The @condition is checked each time 492 * The @condition is checked each time the waitqueue @wq_head is woken up. 522 * The @condition is checked each time the waitqueue @wq_head is woken up. 577 * The @condition is checked each time the waitqueue @wq_head is woken up. 603 * The @condition is checked each time the waitqueue @wq is woken up. 668 * The @condition is checked each time the waitqueue @wq_head is woken up. 688 * 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().
|
| /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. 563 * The @condition is checked each time the waitqueue @wq_head is woken up. 589 * The @condition is checked each time the waitqueue @wq is woken up. 654 * The @condition is checked each time the waitqueue @wq_head is woken up. 674 * The @condition is checked each time the waitqueue @wq_head is woken up. [all …]
|
| /kernel/linux/linux-6.6/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-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-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-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-6.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
|
| /kernel/linux/linux-6.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()
|
| /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-6.6/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
|
| /kernel/linux/linux-6.6/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…
|
| /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-6.6/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)
|
| /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-6.6/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-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)
|