]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - scrub/phase6.c
020b303dec4bbb9d4c1cc588f526db2e186f098d
[thirdparty/xfsprogs-dev.git] / scrub / phase6.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2018 Oracle. All Rights Reserved.
4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
5 */
6 #include "xfs.h"
7 #include <stdint.h>
8 #include <dirent.h>
9 #include <sys/statvfs.h>
10 #include "handle.h"
11 #include "libfrog/paths.h"
12 #include "libfrog/workqueue.h"
13 #include "xfs_scrub.h"
14 #include "common.h"
15 #include "libfrog/bitmap.h"
16 #include "disk.h"
17 #include "filemap.h"
18 #include "fscounters.h"
19 #include "inodes.h"
20 #include "read_verify.h"
21 #include "spacemap.h"
22 #include "vfs.h"
23
24 /*
25 * Phase 6: Verify data file integrity.
26 *
27 * Identify potential data block extents with GETFSMAP, then feed those
28 * extents to the read-verify pool to get the verify commands batched,
29 * issued, and (if there are problems) reported back to us. If there
30 * are errors, we'll record the bad regions and (if available) use rmap
31 * to tell us if metadata are now corrupt. Otherwise, we'll scan the
32 * whole directory tree looking for files that overlap the bad regions
33 * and report the paths of the now corrupt files.
34 */
35
36 /* Verify disk blocks with GETFSMAP */
37
38 struct media_verify_state {
39 struct read_verify_pool *rvp_data;
40 struct read_verify_pool *rvp_log;
41 struct read_verify_pool *rvp_realtime;
42 struct bitmap *d_bad; /* bytes */
43 struct bitmap *r_bad; /* bytes */
44 };
45
46 /* Find the fd for a given device identifier. */
47 static struct read_verify_pool *
48 dev_to_pool(
49 struct scrub_ctx *ctx,
50 struct media_verify_state *vs,
51 dev_t dev)
52 {
53 if (dev == ctx->fsinfo.fs_datadev)
54 return vs->rvp_data;
55 else if (dev == ctx->fsinfo.fs_logdev)
56 return vs->rvp_log;
57 else if (dev == ctx->fsinfo.fs_rtdev)
58 return vs->rvp_realtime;
59 abort();
60 }
61
62 /* Find the device major/minor for a given file descriptor. */
63 static dev_t
64 disk_to_dev(
65 struct scrub_ctx *ctx,
66 struct disk *disk)
67 {
68 if (disk == ctx->datadev)
69 return ctx->fsinfo.fs_datadev;
70 else if (disk == ctx->logdev)
71 return ctx->fsinfo.fs_logdev;
72 else if (disk == ctx->rtdev)
73 return ctx->fsinfo.fs_rtdev;
74 abort();
75 }
76
77 /* Find the incore bad blocks bitmap for a given disk. */
78 static struct bitmap *
79 bitmap_for_disk(
80 struct scrub_ctx *ctx,
81 struct disk *disk,
82 struct media_verify_state *vs)
83 {
84 dev_t dev = disk_to_dev(ctx, disk);
85
86 if (dev == ctx->fsinfo.fs_datadev)
87 return vs->d_bad;
88 else if (dev == ctx->fsinfo.fs_rtdev)
89 return vs->r_bad;
90 return NULL;
91 }
92
93 struct disk_ioerr_report {
94 struct scrub_ctx *ctx;
95 struct disk *disk;
96 };
97
98 struct owner_decode {
99 uint64_t owner;
100 const char *descr;
101 };
102
103 static const struct owner_decode special_owners[] = {
104 {XFS_FMR_OWN_FREE, "free space"},
105 {XFS_FMR_OWN_UNKNOWN, "unknown owner"},
106 {XFS_FMR_OWN_FS, "static FS metadata"},
107 {XFS_FMR_OWN_LOG, "journalling log"},
108 {XFS_FMR_OWN_AG, "per-AG metadata"},
109 {XFS_FMR_OWN_INOBT, "inode btree blocks"},
110 {XFS_FMR_OWN_INODES, "inodes"},
111 {XFS_FMR_OWN_REFC, "refcount btree"},
112 {XFS_FMR_OWN_COW, "CoW staging"},
113 {XFS_FMR_OWN_DEFECTIVE, "bad blocks"},
114 {0, NULL},
115 };
116
117 /* Decode a special owner. */
118 static const char *
119 decode_special_owner(
120 uint64_t owner)
121 {
122 const struct owner_decode *od = special_owners;
123
124 while (od->descr) {
125 if (od->owner == owner)
126 return od->descr;
127 od++;
128 }
129
130 return NULL;
131 }
132
133 /* Routines to translate bad physical extents into file paths and offsets. */
134
135 struct badfile_report {
136 struct scrub_ctx *ctx;
137 const char *descr;
138 struct media_verify_state *vs;
139 struct file_bmap *bmap;
140 };
141
142 /* Report on bad extents found during a media scan. */
143 static int
144 report_badfile(
145 uint64_t start,
146 uint64_t length,
147 void *arg)
148 {
149 struct badfile_report *br = arg;
150 unsigned long long bad_offset;
151 unsigned long long bad_length;
152
153 /* Clamp the bad region to the file mapping. */
154 if (start < br->bmap->bm_physical) {
155 length -= br->bmap->bm_physical - start;
156 start = br->bmap->bm_physical;
157 }
158 length = min(length, br->bmap->bm_length);
159
160 /* Figure out how far into the bmap is the bad mapping and report it. */
161 bad_offset = start - br->bmap->bm_physical;
162 bad_length = min(start + length,
163 br->bmap->bm_physical + br->bmap->bm_length) - start;
164
165 str_unfixable_error(br->ctx, br->descr,
166 _("media error at data offset %llu length %llu."),
167 br->bmap->bm_offset + bad_offset, bad_length);
168 return 0;
169 }
170
171 /* Report if this extent overlaps a bad region. */
172 static int
173 report_data_loss(
174 struct scrub_ctx *ctx,
175 int fd,
176 int whichfork,
177 struct fsxattr *fsx,
178 struct file_bmap *bmap,
179 void *arg)
180 {
181 struct badfile_report *br = arg;
182 struct media_verify_state *vs = br->vs;
183 struct bitmap *bmp;
184
185 br->bmap = bmap;
186
187 /* Only report errors for real extents. */
188 if (bmap->bm_flags & (BMV_OF_PREALLOC | BMV_OF_DELALLOC))
189 return 0;
190
191 if (fsx->fsx_xflags & FS_XFLAG_REALTIME)
192 bmp = vs->r_bad;
193 else
194 bmp = vs->d_bad;
195
196 return bitmap_iterate_range(bmp, bmap->bm_physical, bmap->bm_length,
197 report_badfile, br);
198 }
199
200 /* Report if the extended attribute data overlaps a bad region. */
201 static int
202 report_attr_loss(
203 struct scrub_ctx *ctx,
204 int fd,
205 int whichfork,
206 struct fsxattr *fsx,
207 struct file_bmap *bmap,
208 void *arg)
209 {
210 struct badfile_report *br = arg;
211 struct media_verify_state *vs = br->vs;
212 struct bitmap *bmp = vs->d_bad;
213
214 /* Complain about attr fork extents that don't look right. */
215 if (bmap->bm_flags & (BMV_OF_PREALLOC | BMV_OF_DELALLOC)) {
216 str_info(ctx, br->descr,
217 _("found unexpected unwritten/delalloc attr fork extent."));
218 return 0;
219 }
220
221 if (fsx->fsx_xflags & FS_XFLAG_REALTIME) {
222 str_info(ctx, br->descr,
223 _("found unexpected realtime attr fork extent."));
224 return 0;
225 }
226
227 if (bitmap_test(bmp, bmap->bm_physical, bmap->bm_length))
228 str_corrupt(ctx, br->descr,
229 _("media error in extended attribute data."));
230
231 return 0;
232 }
233
234 /* Iterate the extent mappings of a file to report errors. */
235 static int
236 report_fd_loss(
237 struct scrub_ctx *ctx,
238 const char *descr,
239 int fd,
240 void *arg)
241 {
242 struct badfile_report br = {
243 .ctx = ctx,
244 .vs = arg,
245 .descr = descr,
246 };
247 struct file_bmap key = {0};
248 int ret;
249
250 /* data fork */
251 ret = scrub_iterate_filemaps(ctx, fd, XFS_DATA_FORK, &key,
252 report_data_loss, &br);
253 if (ret) {
254 str_liberror(ctx, ret, descr);
255 return ret;
256 }
257
258 /* attr fork */
259 ret = scrub_iterate_filemaps(ctx, fd, XFS_ATTR_FORK, &key,
260 report_attr_loss, &br);
261 if (ret) {
262 str_liberror(ctx, ret, descr);
263 return ret;
264 }
265
266 return 0;
267 }
268
269 /* Report read verify errors in unlinked (but still open) files. */
270 static int
271 report_inode_loss(
272 struct scrub_ctx *ctx,
273 struct xfs_handle *handle,
274 struct xfs_bulkstat *bstat,
275 void *arg)
276 {
277 char descr[DESCR_BUFSZ];
278 int fd;
279 int error, err2;
280
281 /* Ignore linked files and things we can't open. */
282 if (bstat->bs_nlink != 0)
283 return 0;
284 if (!S_ISREG(bstat->bs_mode) && !S_ISDIR(bstat->bs_mode))
285 return 0;
286
287 scrub_render_ino_descr(ctx, descr, DESCR_BUFSZ,
288 bstat->bs_ino, bstat->bs_gen, _("(unlinked)"));
289
290 /* Try to open the inode. */
291 fd = scrub_open_handle(handle);
292 if (fd < 0) {
293 error = errno;
294 if (error == ESTALE)
295 return error;
296
297 str_info(ctx, descr,
298 _("Disappeared during read error reporting."));
299 return error;
300 }
301
302 /* Go find the badness. */
303 error = report_fd_loss(ctx, descr, fd, arg);
304
305 err2 = close(fd);
306 if (err2)
307 str_errno(ctx, descr);
308
309 return error;
310 }
311
312 /* Scan a directory for matches in the read verify error list. */
313 static int
314 report_dir_loss(
315 struct scrub_ctx *ctx,
316 const char *path,
317 int dir_fd,
318 void *arg)
319 {
320 return report_fd_loss(ctx, path, dir_fd, arg);
321 }
322
323 /*
324 * Scan the inode associated with a directory entry for matches with
325 * the read verify error list.
326 */
327 static int
328 report_dirent_loss(
329 struct scrub_ctx *ctx,
330 const char *path,
331 int dir_fd,
332 struct dirent *dirent,
333 struct stat *sb,
334 void *arg)
335 {
336 int fd;
337 int error, err2;
338
339 /* Ignore things we can't open. */
340 if (!S_ISREG(sb->st_mode) && !S_ISDIR(sb->st_mode))
341 return 0;
342
343 /* Ignore . and .. */
344 if (!strcmp(".", dirent->d_name) || !strcmp("..", dirent->d_name))
345 return 0;
346
347 /*
348 * If we were given a dirent, open the associated file under
349 * dir_fd for badblocks scanning. If dirent is NULL, then it's
350 * the directory itself we want to scan.
351 */
352 fd = openat(dir_fd, dirent->d_name,
353 O_RDONLY | O_NOATIME | O_NOFOLLOW | O_NOCTTY);
354 if (fd < 0) {
355 if (errno == ENOENT)
356 return 0;
357 str_errno(ctx, path);
358 return errno;
359 }
360
361 /* Go find the badness. */
362 error = report_fd_loss(ctx, path, fd, arg);
363
364 err2 = close(fd);
365 if (err2)
366 str_errno(ctx, path);
367 if (!error && err2)
368 error = err2;
369
370 return error;
371 }
372
373 /* Use a fsmap to report metadata lost to a media error. */
374 static int
375 report_ioerr_fsmap(
376 struct scrub_ctx *ctx,
377 struct fsmap *map,
378 void *arg)
379 {
380 const char *type;
381 char buf[DESCR_BUFSZ];
382 uint64_t err_physical = *(uint64_t *)arg;
383 uint64_t err_off;
384
385 /* Don't care about unwritten extents. */
386 if (map->fmr_flags & FMR_OF_PREALLOC)
387 return 0;
388
389 if (err_physical > map->fmr_physical)
390 err_off = err_physical - map->fmr_physical;
391 else
392 err_off = 0;
393
394 /* Report special owners */
395 if (map->fmr_flags & FMR_OF_SPECIAL_OWNER) {
396 snprintf(buf, DESCR_BUFSZ, _("disk offset %"PRIu64),
397 (uint64_t)map->fmr_physical + err_off);
398 type = decode_special_owner(map->fmr_owner);
399 str_corrupt(ctx, buf, _("media error in %s."), type);
400 }
401
402 /* Report extent maps */
403 if (map->fmr_flags & FMR_OF_EXTENT_MAP) {
404 bool attr = (map->fmr_flags & FMR_OF_ATTR_FORK);
405
406 scrub_render_ino_descr(ctx, buf, DESCR_BUFSZ,
407 map->fmr_owner, 0, " %s",
408 attr ? _("extended attribute") :
409 _("file data"));
410 str_corrupt(ctx, buf, _("media error in extent map"));
411 }
412
413 /*
414 * XXX: If we had a getparent() call we could report IO errors
415 * efficiently. Until then, we'll have to scan the dir tree
416 * to find the bad file's pathname.
417 */
418
419 return 0;
420 }
421
422 /*
423 * For a range of bad blocks, visit each space mapping that overlaps the bad
424 * range so that we can report lost metadata.
425 */
426 static int
427 report_ioerr(
428 uint64_t start,
429 uint64_t length,
430 void *arg)
431 {
432 struct fsmap keys[2];
433 struct disk_ioerr_report *dioerr = arg;
434 dev_t dev;
435
436 dev = disk_to_dev(dioerr->ctx, dioerr->disk);
437
438 /* Go figure out which blocks are bad from the fsmap. */
439 memset(keys, 0, sizeof(struct fsmap) * 2);
440 keys->fmr_device = dev;
441 keys->fmr_physical = start;
442 (keys + 1)->fmr_device = dev;
443 (keys + 1)->fmr_physical = start + length - 1;
444 (keys + 1)->fmr_owner = ULLONG_MAX;
445 (keys + 1)->fmr_offset = ULLONG_MAX;
446 (keys + 1)->fmr_flags = UINT_MAX;
447 return scrub_iterate_fsmap(dioerr->ctx, keys, report_ioerr_fsmap,
448 &start);
449 }
450
451 /* Report all the media errors found on a disk. */
452 static int
453 report_disk_ioerrs(
454 struct scrub_ctx *ctx,
455 struct disk *disk,
456 struct media_verify_state *vs)
457 {
458 struct disk_ioerr_report dioerr = {
459 .ctx = ctx,
460 .disk = disk,
461 };
462 struct bitmap *tree;
463
464 if (!disk)
465 return 0;
466 tree = bitmap_for_disk(ctx, disk, vs);
467 if (!tree)
468 return 0;
469 return bitmap_iterate(tree, report_ioerr, &dioerr);
470 }
471
472 /* Given bad extent lists for the data & rtdev, find bad files. */
473 static int
474 report_all_media_errors(
475 struct scrub_ctx *ctx,
476 struct media_verify_state *vs)
477 {
478 int ret;
479
480 ret = report_disk_ioerrs(ctx, ctx->datadev, vs);
481 if (ret) {
482 str_liberror(ctx, ret, _("walking datadev io errors"));
483 return ret;
484 }
485
486 ret = report_disk_ioerrs(ctx, ctx->rtdev, vs);
487 if (ret) {
488 str_liberror(ctx, ret, _("walking rtdev io errors"));
489 return ret;
490 }
491
492 /* Scan the directory tree to get file paths. */
493 ret = scan_fs_tree(ctx, report_dir_loss, report_dirent_loss, vs);
494 if (ret)
495 return ret;
496
497 /* Scan for unlinked files. */
498 return scrub_scan_all_inodes(ctx, report_inode_loss, vs);
499 }
500
501 /* Schedule a read-verify of a (data block) extent. */
502 static int
503 check_rmap(
504 struct scrub_ctx *ctx,
505 struct fsmap *map,
506 void *arg)
507 {
508 struct media_verify_state *vs = arg;
509 struct read_verify_pool *rvp;
510 int ret;
511
512 rvp = dev_to_pool(ctx, vs, map->fmr_device);
513
514 dbg_printf("rmap dev %d:%d phys %"PRIu64" owner %"PRId64
515 " offset %"PRIu64" len %"PRIu64" flags 0x%x\n",
516 major(map->fmr_device), minor(map->fmr_device),
517 (uint64_t)map->fmr_physical, (int64_t)map->fmr_owner,
518 (uint64_t)map->fmr_offset, (uint64_t)map->fmr_length,
519 map->fmr_flags);
520
521 /* "Unknown" extents should be verified; they could be data. */
522 if ((map->fmr_flags & FMR_OF_SPECIAL_OWNER) &&
523 map->fmr_owner == XFS_FMR_OWN_UNKNOWN)
524 map->fmr_flags &= ~FMR_OF_SPECIAL_OWNER;
525
526 /*
527 * We only care about read-verifying data extents that have been
528 * written to disk. This means we can skip "special" owners
529 * (metadata), xattr blocks, unwritten extents, and extent maps.
530 * These should all get checked elsewhere in the scrubber.
531 */
532 if (map->fmr_flags & (FMR_OF_PREALLOC | FMR_OF_ATTR_FORK |
533 FMR_OF_EXTENT_MAP | FMR_OF_SPECIAL_OWNER))
534 return 0;
535
536 /* XXX: Filter out directory data blocks. */
537
538 /* Schedule the read verify command for (eventual) running. */
539 ret = read_verify_schedule_io(rvp, map->fmr_physical, map->fmr_length,
540 vs);
541 if (ret) {
542 str_liberror(ctx, ret, _("scheduling media verify command"));
543 return ret;
544 }
545
546 return 0;
547 }
548
549 /* Wait for read/verify actions to finish, then return # bytes checked. */
550 static int
551 clean_pool(
552 struct read_verify_pool *rvp,
553 unsigned long long *bytes_checked)
554 {
555 uint64_t pool_checked;
556 int ret;
557
558 if (!rvp)
559 return 0;
560
561 ret = read_verify_force_io(rvp);
562 if (ret)
563 return ret;
564
565 ret = read_verify_pool_flush(rvp);
566 if (ret)
567 goto out_destroy;
568
569 ret = read_verify_bytes(rvp, &pool_checked);
570 if (ret)
571 goto out_destroy;
572
573 *bytes_checked += pool_checked;
574 out_destroy:
575 read_verify_pool_destroy(rvp);
576 return ret;
577 }
578
579 /* Remember a media error for later. */
580 static void
581 remember_ioerr(
582 struct scrub_ctx *ctx,
583 struct disk *disk,
584 uint64_t start,
585 uint64_t length,
586 int error,
587 void *arg)
588 {
589 struct media_verify_state *vs = arg;
590 struct bitmap *tree;
591 int ret;
592
593 tree = bitmap_for_disk(ctx, disk, vs);
594 if (!tree) {
595 str_liberror(ctx, ENOENT, _("finding bad block bitmap"));
596 return;
597 }
598
599 ret = bitmap_set(tree, start, length);
600 if (ret)
601 str_liberror(ctx, ret, _("setting bad block bitmap"));
602 }
603
604 /*
605 * Read verify all the file data blocks in a filesystem. Since XFS doesn't
606 * do data checksums, we trust that the underlying storage will pass back
607 * an IO error if it can't retrieve whatever we previously stored there.
608 * If we hit an IO error, we'll record the bad blocks in a bitmap and then
609 * scan the extent maps of the entire fs tree to figure (and the unlinked
610 * inodes) out which files are now broken.
611 */
612 int
613 phase6_func(
614 struct scrub_ctx *ctx)
615 {
616 struct media_verify_state vs = { NULL };
617 int ret, ret2, ret3;
618
619 ret = bitmap_alloc(&vs.d_bad);
620 if (ret) {
621 str_liberror(ctx, ret, _("creating datadev badblock bitmap"));
622 return ret;
623 }
624
625 ret = bitmap_alloc(&vs.r_bad);
626 if (ret) {
627 str_liberror(ctx, ret, _("creating realtime badblock bitmap"));
628 goto out_dbad;
629 }
630
631 ret = read_verify_pool_alloc(ctx, ctx->datadev,
632 ctx->mnt.fsgeom.blocksize, remember_ioerr,
633 scrub_nproc(ctx), &vs.rvp_data);
634 if (ret) {
635 str_liberror(ctx, ret, _("creating datadev media verifier"));
636 goto out_rbad;
637 }
638 if (ctx->logdev) {
639 ret = read_verify_pool_alloc(ctx, ctx->logdev,
640 ctx->mnt.fsgeom.blocksize, remember_ioerr,
641 scrub_nproc(ctx), &vs.rvp_log);
642 if (ret) {
643 str_liberror(ctx, ret,
644 _("creating logdev media verifier"));
645 goto out_datapool;
646 }
647 }
648 if (ctx->rtdev) {
649 ret = read_verify_pool_alloc(ctx, ctx->rtdev,
650 ctx->mnt.fsgeom.blocksize, remember_ioerr,
651 scrub_nproc(ctx), &vs.rvp_realtime);
652 if (ret) {
653 str_liberror(ctx, ret,
654 _("creating rtdev media verifier"));
655 goto out_logpool;
656 }
657 }
658 ret = scrub_scan_all_spacemaps(ctx, check_rmap, &vs);
659 if (ret)
660 goto out_rtpool;
661
662 ret = clean_pool(vs.rvp_data, &ctx->bytes_checked);
663 if (ret)
664 str_liberror(ctx, ret, _("flushing datadev verify pool"));
665
666 ret2 = clean_pool(vs.rvp_log, &ctx->bytes_checked);
667 if (ret2)
668 str_liberror(ctx, ret2, _("flushing logdev verify pool"));
669
670 ret3 = clean_pool(vs.rvp_realtime, &ctx->bytes_checked);
671 if (ret3)
672 str_liberror(ctx, ret3, _("flushing rtdev verify pool"));
673
674 /*
675 * If the verify flush didn't work or we found no bad blocks, we're
676 * done! No errors detected.
677 */
678 if (ret || ret2 || ret3)
679 goto out_rbad;
680 if (bitmap_empty(vs.d_bad) && bitmap_empty(vs.r_bad))
681 goto out_rbad;
682
683 /* Scan the whole dir tree to see what matches the bad extents. */
684 ret = report_all_media_errors(ctx, &vs);
685
686 bitmap_free(&vs.r_bad);
687 bitmap_free(&vs.d_bad);
688 return ret;
689
690 out_rtpool:
691 if (vs.rvp_realtime) {
692 read_verify_pool_abort(vs.rvp_realtime);
693 read_verify_pool_destroy(vs.rvp_realtime);
694 }
695 out_logpool:
696 if (vs.rvp_log) {
697 read_verify_pool_abort(vs.rvp_log);
698 read_verify_pool_destroy(vs.rvp_log);
699 }
700 out_datapool:
701 read_verify_pool_abort(vs.rvp_data);
702 read_verify_pool_destroy(vs.rvp_data);
703 out_rbad:
704 bitmap_free(&vs.r_bad);
705 out_dbad:
706 bitmap_free(&vs.d_bad);
707 return ret;
708 }
709
710 bool
711 xfs_scan_blocks(
712 struct scrub_ctx *ctx)
713 {
714 return phase6_func(ctx) == 0;
715 }
716
717 /* Estimate how much work we're going to do. */
718 int
719 phase6_estimate(
720 struct scrub_ctx *ctx,
721 uint64_t *items,
722 unsigned int *nr_threads,
723 int *rshift)
724 {
725 unsigned long long d_blocks;
726 unsigned long long d_bfree;
727 unsigned long long r_blocks;
728 unsigned long long r_bfree;
729 unsigned long long f_files;
730 unsigned long long f_free;
731 int ret;
732
733 ret = scrub_scan_estimate_blocks(ctx, &d_blocks, &d_bfree,
734 &r_blocks, &r_bfree, &f_files, &f_free);
735 if (ret) {
736 str_liberror(ctx, ret, _("estimating verify work"));
737 return ret;
738 }
739
740 *items = cvt_off_fsb_to_b(&ctx->mnt,
741 (d_blocks - d_bfree) + (r_blocks - r_bfree));
742 *nr_threads = disk_heads(ctx->datadev);
743 *rshift = 20;
744 return 0;
745 }
746
747 bool
748 xfs_estimate_verify_work(
749 struct scrub_ctx *ctx,
750 uint64_t *items,
751 unsigned int *nr_threads,
752 int *rshift)
753 {
754 return phase6_estimate(ctx, items, nr_threads, rshift) == 0;
755 }