Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

remove the in-kernel struct dirent{,64}

The kernel struct dirent{,64} were different from the ones in
userspace.

Even worse, we exported the kernel ones to userspace.

But after the fat usages are fixed we can remove the conflicting
kernel versions.

Reviewed-by: H. Peter Anvin <hpa@kernel.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Adrian Bunk and committed by
Linus Torvalds
cf6ae8b5 7557bc66

-21
-1
include/linux/Kbuild
··· 189 189 unifdef-y += cuda.h 190 190 unifdef-y += cyclades.h 191 191 unifdef-y += dccp.h 192 - unifdef-y += dirent.h 193 192 unifdef-y += dlm.h 194 193 unifdef-y += dlm_plock.h 195 194 unifdef-y += edd.h
-20
include/linux/dirent.h
··· 1 1 #ifndef _LINUX_DIRENT_H 2 2 #define _LINUX_DIRENT_H 3 3 4 - struct dirent { 5 - long d_ino; 6 - __kernel_off_t d_off; 7 - unsigned short d_reclen; 8 - char d_name[256]; /* We must not include limits.h! */ 9 - }; 10 - 11 - struct dirent64 { 12 - __u64 d_ino; 13 - __s64 d_off; 14 - unsigned short d_reclen; 15 - unsigned char d_type; 16 - char d_name[256]; 17 - }; 18 - 19 - #ifdef __KERNEL__ 20 - 21 4 struct linux_dirent64 { 22 5 u64 d_ino; 23 6 s64 d_off; ··· 8 25 unsigned char d_type; 9 26 char d_name[0]; 10 27 }; 11 - 12 - #endif /* __KERNEL__ */ 13 - 14 28 15 29 #endif