summaryrefslogtreecommitdiff
path: root/include/linux/dirent.h
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-07-25 08:46:46 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-25 17:53:34 (GMT)
commitcf6ae8b50e0ee3f764392dadd1970e3f03c40773 (patch)
treee58c4c82e4d20ed296cc2030fd1b73bed12903d1 /include/linux/dirent.h
parent7557bc66be629d19a402e752673708bfbb8b5e86 (diff)
downloadlinux-fsl-qoriq-cf6ae8b50e0ee3f764392dadd1970e3f03c40773.tar.xz
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>
Diffstat (limited to 'include/linux/dirent.h')
-rw-r--r--include/linux/dirent.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/linux/dirent.h b/include/linux/dirent.h
index 5d6023b..f072fb8 100644
--- a/include/linux/dirent.h
+++ b/include/linux/dirent.h
@@ -1,23 +1,6 @@
#ifndef _LINUX_DIRENT_H
#define _LINUX_DIRENT_H
-struct dirent {
- long d_ino;
- __kernel_off_t d_off;
- unsigned short d_reclen;
- char d_name[256]; /* We must not include limits.h! */
-};
-
-struct dirent64 {
- __u64 d_ino;
- __s64 d_off;
- unsigned short d_reclen;
- unsigned char d_type;
- char d_name[256];
-};
-
-#ifdef __KERNEL__
-
struct linux_dirent64 {
u64 d_ino;
s64 d_off;
@@ -26,7 +9,4 @@ struct linux_dirent64 {
char d_name[0];
};
-#endif /* __KERNEL__ */
-
-
#endif