]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add f_flags to struct statfs for MIPS.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 12 Aug 2010 22:18:00 +0000 (22:18 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 12 Aug 2010 22:18:00 +0000 (22:18 +0000)
ChangeLog.mips
sysdeps/unix/sysv/linux/mips/bits/statfs.h

index 562364260abae69c22c857aadaf907d247105fe8..2dbed6f8bcdd1d935817ab061dc066ec137e4535 100644 (file)
@@ -1,3 +1,8 @@
+2010-08-12  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/bits/statfs.h (struct statfs,
+       struct statfs64): Add f_flags field.
+
 2010-08-12  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/mips/sys/inotify.h (IN_EXCL_UNLINK):
index 2f9bd54edc3074bf0542ff2f056fee6ac47c855e..22a9ddead8cfd842b6614f627ec83e95a79b4bc6 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 2000, 2010 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -45,7 +45,8 @@ struct statfs
        /* Linux specials */
     __fsid_t f_fsid;
     long int f_namelen;
-    long int f_spare[6];
+    long int f_flags;
+    long int f_spare[5];
   };
 
 #ifdef __USE_LARGEFILE64
@@ -64,7 +65,8 @@ struct statfs64
        /* Linux specials */
     __fsid_t f_fsid;
     long int f_namelen;
-    long int f_spare[6];
+    long int f_flags;
+    long int f_spare[5];
   };
 #endif