summaryrefslogtreecommitdiffstats
path: root/include/asm-alpha/stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-alpha/stat.h')
-rw-r--r--include/asm-alpha/stat.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/asm-alpha/stat.h b/include/asm-alpha/stat.h
index 275383002..66ea898d1 100644
--- a/include/asm-alpha/stat.h
+++ b/include/asm-alpha/stat.h
@@ -1,7 +1,7 @@
#ifndef _ALPHA_STAT_H
#define _ALPHA_STAT_H
-struct old_stat {
+struct __old_kernel_stat {
unsigned int st_dev;
unsigned int st_ino;
unsigned int st_mode;
@@ -10,16 +10,16 @@ struct old_stat {
unsigned int st_gid;
unsigned int st_rdev;
long st_size;
- unsigned int st_atime, st_res1;
- unsigned int st_mtime, st_res2;
- unsigned int st_ctime, st_res3;
- unsigned int st_blkize;
+ unsigned long st_atime;
+ unsigned long st_mtime;
+ unsigned long st_ctime;
+ unsigned int st_blksize;
int st_blocks;
unsigned int st_flags;
unsigned int st_gen;
};
-struct new_stat {
+struct stat {
unsigned int st_dev;
unsigned int st_ino;
unsigned int st_mode;
@@ -28,9 +28,9 @@ struct new_stat {
unsigned int st_gid;
unsigned int st_rdev;
long st_size;
- unsigned int st_atime, st_res1;
- unsigned int st_mtime, st_res2;
- unsigned int st_ctime, st_res3;
+ unsigned long st_atime;
+ unsigned long st_mtime;
+ unsigned long st_ctime;
unsigned int st_blksize;
int st_blocks;
unsigned int st_flags;