]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 4 Sep 2003 14:42:25 +0000 (14:42 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 4 Sep 2003 14:42:25 +0000 (14:42 +0000)
* sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
Report correct value for vxfs.
* sysdeps/unix/sysv/linux/linux_fsinfo.h: Dfeine VXFS_SUPER_MAGIC.

ChangeLog
nptl/ChangeLog
sysdeps/unix/sysv/linux/linux_fsinfo.h
sysdeps/unix/sysv/linux/pathconf.c

index fbe0768e3c1525700eddebc3da0115ad8e3465e5..bc25c68f443e57a988c32d4d82bf1396f5ddbf29 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2003-09-04  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
+       Report correct value for vxfs.
+       * sysdeps/unix/sysv/linux/linux_fsinfo.h: Dfeine VXFS_SUPER_MAGIC.
+
        * gmon/gmon.c: Use only not-cancelable syscalls to write profiling
        data.
 
index 647a4433924293d65a8a53cf8799cbe661c7bf4d..54593f81e7ae067c53587be8604bb9bd4ce38063 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-04  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/i386/not-cancel.h (fcntl_not_cancel): Define.
+
 2003-09-04  Jakub Jelinek  <jakub@redhat.com>
 
        * unwind-forcedunwind.c: Move to...
index d108753085a52e11af22c9b6e35c27d7d776757b..41dbbde55cbade7ddb74809ca12dada5873c2408 100644 (file)
 /* Constants that identify the `xfs' filesystem.  */
 #define XFS_SUPER_MAGIC                0x58465342
 
+/* Constants that identify the `vxfs' filesystem.  */
+#define VXFS_SUPER_MAGIC       0xa501fcf5
+
 /* Maximum link counts.  */
 #define COH_LINK_MAX           10000
 #define EXT2_LINK_MAX          32000
index d4159753a6262f85d2a18ac9d45bdebee27b5cd0..e12a08434a104d46be8ef10dd788cd8201f49174 100644 (file)
@@ -130,6 +130,7 @@ __statfs_filesize_max (int result, const struct statfs *fsbuf)
     case NTFS_SUPER_MAGIC:
     case UDF_SUPER_MAGIC:
     case JFS_SUPER_MAGIC:
+    case VXFS_SUPER_MAGIC:
       return 64;
 
     case MSDOS_SUPER_MAGIC: