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 5623642..2dbed6f 100644 (file)
@@ -1,5 +1,10 @@
 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):
        Define.
 
index 2f9bd54..22a9dde 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