diff options
author | Zhihao Cheng <chengzhihao1@huawei.com> | 2024-11-11 17:00:57 +0800 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2024-11-11 10:32:45 +0100 |
commit | 6e69972e9abc69c584ae4dad6a1b6ff63c2ac3d7 (patch) | |
tree | 5a318e08223c1e0c17ade2603e99c63dcb68f52b /ubifs-utils/libubifs/find.c | |
parent | a16031a8dac5c699a15cc91500f2718f28993431 (diff) |
ubifs-utils: Adapt gc subsystem in libubifs
Adapt gc subsystem(find.c, gc.c, scan.c) in libubifs, compared with
linux kernel implementations:
1. Adapt print_hex_dump based on implementations in hexdump.c.
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'ubifs-utils/libubifs/find.c')
-rw-r--r-- | ubifs-utils/libubifs/find.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ubifs-utils/libubifs/find.c b/ubifs-utils/libubifs/find.c index 873e6e1..ecf689c 100644 --- a/ubifs-utils/libubifs/find.c +++ b/ubifs-utils/libubifs/find.c @@ -14,8 +14,15 @@ * for fast access, falling back on scanning the LPT as a last resort. */ -#include <linux/sort.h> +#include <sys/types.h> + +#include "linux_err.h" +#include "bitops.h" +#include "sort.h" #include "ubifs.h" +#include "defs.h" +#include "debug.h" +#include "misc.h" /** * struct scan_data - data provided to scan callback functions |