This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-324-gf55a4fd


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  f55a4fdefb00837f2e2a77c04792e69e888ead3e (commit)
      from  9d9f8f03afdbec53785522e1df421d70d2777f45 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=f55a4fdefb00837f2e2a77c04792e69e888ead3e

commit f55a4fdefb00837f2e2a77c04792e69e888ead3e
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Thu Apr 19 02:25:03 2018 +0200

    hurd: Update struct statfs according to struct statvfs
    
    	* sysdeps/mach/hurd/bits/statfs.h (struct statfs): Make f_bsize,
    	f_namemax, f_frsize, and f_flag fields unsigned long int instead of
    	unsigned int.
    	(struct statfs64): Likewise.

diff --git a/ChangeLog b/ChangeLog
index cd0734f..ec19da4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,8 @@
 	f_namemax, f_frsize, and f_flag fields unsigned long int instead of
 	unsigned int.
 	(struct statvfs64): Likewise.
+	* sysdeps/mach/hurd/bits/statfs.h (struct statfs, struct statfs64):
+	Likewise.
 
 2018-04-18  Joseph Myers  <joseph@codesourcery.com>
 
diff --git a/sysdeps/mach/hurd/bits/statfs.h b/sysdeps/mach/hurd/bits/statfs.h
index 0063e68..82e570b 100644
--- a/sysdeps/mach/hurd/bits/statfs.h
+++ b/sysdeps/mach/hurd/bits/statfs.h
@@ -37,7 +37,7 @@
 struct statfs
   {
     unsigned int f_type;
-    unsigned int f_bsize;
+    unsigned long int f_bsize;
 #ifndef __USE_FILE_OFFSET64
     __fsblkcnt_t f_blocks;
     __fsblkcnt_t f_bfree;
@@ -52,14 +52,14 @@ struct statfs
     __fsblkcnt64_t f_ffree;
 #endif
     __fsid_t f_fsid;
-    unsigned int f_namelen;
+    unsigned long int f_namelen;
 #ifndef __USE_FILE_OFFSET64
     __fsfilcnt_t f_favail;
 #else
     __fsfilcnt64_t f_favail;
 #endif
-    unsigned int f_frsize;
-    unsigned int f_flag;
+    unsigned long int f_frsize;
+    unsigned long int f_flag;
     unsigned int f_spare[3];
   };
 
@@ -67,17 +67,17 @@ struct statfs
 struct statfs64
   {
     unsigned int f_type;
-    unsigned int f_bsize;
+    unsigned long int f_bsize;
     __fsblkcnt64_t f_blocks;
     __fsblkcnt64_t f_bfree;
     __fsblkcnt64_t f_bavail;
     __fsblkcnt64_t f_files;
     __fsblkcnt64_t f_ffree;
     __fsid_t f_fsid;
-    unsigned int f_namelen;
+    unsigned long int f_namelen;
     __fsfilcnt64_t f_favail;
-    unsigned int f_frsize;
-    unsigned int f_flag;
+    unsigned long int f_frsize;
+    unsigned long int f_flag;
     unsigned int f_spare[3];
   };
 #endif

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                       |    2 ++
 sysdeps/mach/hurd/bits/statfs.h |   16 ++++++++--------
 2 files changed, 10 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]