From: Lennart Poettering Date: Wed, 9 Nov 2022 10:37:42 +0000 (+0100) Subject: dissect: simplify flags for recurse_dir() X-Git-Tag: v253-rc1~568^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a245225e2d3f1193389c7dc35d2da02543fd8ac8;p=thirdparty%2Fsystemd.git dissect: simplify flags for recurse_dir() We are not interested in the struct dirent data, hence there's no point in passing RECURSE_DIR_ENSURE_TYPE. Let's drop it, and thus avoid some extrac work on file systems where readdir() does not report .d_type. Also drop RECURSE_DIR_SAME_MOUNT, because DDIs after all may contain multiple partitions, and we mount them all together. The --list command really should report the full set of files in an image. --- diff --git a/src/dissect/dissect.c b/src/dissect/dissect.c index 7e70ecf7a8a..dafd474a300 100644 --- a/src/dissect/dissect.c +++ b/src/dissect/dissect.c @@ -896,7 +896,7 @@ static int action_list_or_copy(DissectedImage *m, LoopDevice *d) { if (dfd < 0) return log_error_errno(errno, "Failed to open mount directory: %m"); - r = recurse_dir(dfd, NULL, 0, UINT_MAX, RECURSE_DIR_SORT|RECURSE_DIR_ENSURE_TYPE|RECURSE_DIR_SAME_MOUNT, list_print_item, NULL); + r = recurse_dir(dfd, NULL, 0, UINT_MAX, RECURSE_DIR_SORT, list_print_item, NULL); if (r < 0) return log_error_errno(r, "Failed to list image: %m"); }