mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-27 16:18:52 +00:00
30 lines
847 B
Diff
30 lines
847 B
Diff
|
2011-02-28 Aurelien Jarno <aurelien@aurel32.net>
|
||
|
|
||
|
* sysdeps/unix/sysv/linux/mips/bits/statfs.h (struct statfs,
|
||
|
struct statfs64): Add f_flags field.
|
||
|
|
||
|
diff --git glibc-2.13/glibc-ports-2.13/sysdeps/unix/sysv/linux/alpha/bits/statfs.h glibc-2.13/glibc-ports-2.13/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
|
||
|
index d838e6b..157591d 100644
|
||
|
--- glibc-2.13/glibc-ports-2.13/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
|
||
|
+++ glibc-2.13/glibc-ports-2.13/sysdeps/unix/sysv/linux/alpha/bits/statfs.h
|
||
|
@@ -42,7 +42,8 @@ struct statfs
|
||
|
__fsid_t f_fsid;
|
||
|
int f_namelen;
|
||
|
int f_frsize;
|
||
|
- int f_spare[5];
|
||
|
+ int f_flags;
|
||
|
+ int f_spare[4];
|
||
|
};
|
||
|
|
||
|
#ifdef __USE_LARGEFILE64
|
||
|
@@ -58,7 +59,8 @@ struct statfs64
|
||
|
__fsid_t f_fsid;
|
||
|
int f_namelen;
|
||
|
int f_frsize;
|
||
|
- int f_spare[5];
|
||
|
+ int f_flags;
|
||
|
+ int f_spare[4];
|
||
|
};
|
||
|
#endif
|
||
|
|