mirror of
https://gitee.com/openharmony/third_party_f2fs-tools
synced 2024-11-23 10:10:00 +00:00
fsck.f2fs: remove list.h
Just use list_head only. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
parent
a6b2870ddb
commit
7d96d138a3
@ -26,7 +26,6 @@
|
||||
#include <sys/mount.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <list.h>
|
||||
#include <f2fs_fs.h>
|
||||
|
||||
#define EXIT_ERR_CODE (-1)
|
||||
@ -34,6 +33,10 @@
|
||||
typecheck(unsigned long long, b) && \
|
||||
((long long)((a) - (b)) > 0))
|
||||
|
||||
struct list_head {
|
||||
struct list_head *next, *prev;
|
||||
};
|
||||
|
||||
enum {
|
||||
NAT_BITMAP,
|
||||
SIT_BITMAP
|
||||
|
Loading…
Reference in New Issue
Block a user