/* * linux/include/update.h * * (C) 2021 Huan */ /* update begin */ #define NAME_LEN 14 /* max of file name */ #define DIRBUF 8192 /* buffer size for fs-indep. dirs */ /* must in general be larger than the filesystem buffer size */ #define MAX_ARG_PAGES 32 struct linux_dirent { long d_ino; /* i_node */ off_t d_off; /* */ unsigned short d_reclen; /* size of struct */ char d_name[NAME_LEN]; /* name */ }; /* update end */