Skip to content

Commit

Permalink
sh: Fix fstatat64() syscall.
Browse files Browse the repository at this point in the history
Signed-off-by: SUGIOKA Toshinobu <sugioka@itonet.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
SUGIOKA Toshinobu authored and Paul Mundt committed May 7, 2007
1 parent b7aee51 commit 760bcb1
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions include/asm-sh/stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,13 @@ struct __old_kernel_stat {
};

struct stat {
unsigned short st_dev;
unsigned short __pad1;
unsigned long st_ino;
unsigned long st_dev;
unsigned long st_ino;
unsigned short st_mode;
unsigned short st_nlink;
unsigned short st_uid;
unsigned short st_gid;
unsigned short st_rdev;
unsigned short __pad2;
unsigned long st_rdev;
unsigned long st_size;
unsigned long st_blksize;
unsigned long st_blocks;
Expand All @@ -38,16 +36,16 @@ struct stat {
unsigned long __unused5;
};

#define STAT_HAVE_NSEC 1

/* This matches struct stat64 in glibc2.1, hence the absolutely
* insane amounts of padding around dev_t's.
*/
struct stat64 {
unsigned long long st_dev;
unsigned char __pad0[4];

unsigned long st_ino;
#define STAT64_HAS_BROKEN_ST_INO 1
unsigned long __st_ino;

unsigned int st_mode;
unsigned int st_nlink;

Expand All @@ -71,8 +69,9 @@ struct stat64 {
unsigned long st_ctime;
unsigned long st_ctime_nsec;

unsigned long __unused1;
unsigned long __unused2;
unsigned long long st_ino;
};

#define STAT_HAVE_NSEC 1

#endif /* __ASM_SH_STAT_H */

0 comments on commit 760bcb1

Please sign in to comment.