]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 16 Oct 2002 00:38:29 +0000 (00:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 16 Oct 2002 00:38:29 +0000 (00:38 +0000)
2002-10-15  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/alpha/fpathconf.c (__fpathconf): Add
support for reiserfs and xfs.

* sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Add case for
XFS link count.
* sysdeps/unix/sysv/linux/linux_fsinfo.h: Define XFS_SUPER_MAGIC
and XFS_LINK_MAX.
Patch by Eric Sandeen <sandeen@sgi.com> [PR libc/4706].

ChangeLog
sysdeps/unix/sysv/linux/alpha/fpathconf.c
sysdeps/unix/sysv/linux/fpathconf.c

index 93305b5bace3a90d87d5d3c56a00e76f22c20179..d7f176688cff009bce2b387b75cf02199e8a4a95 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2002-10-15  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/alpha/fpathconf.c (__fpathconf): Add
+       support for reiserfs and xfs.
+
+       * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Add case for
+       XFS link count.
+       * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define XFS_SUPER_MAGIC
+       and XFS_LINK_MAX.
+       Patch by Eric Sandeen <sandeen@sgi.com> [PR libc/4706].
+
 2002-10-16  Jakub Jelinek  <jakub@redhat.com>
 
        * include/libc-symbols.h (attribute_tls_model_ie): Define.
index a7425d7f09fdadda3e444fa3d76fd04ab4548545..1820e5b22968b60d63f6e504de7c4be18e38a778 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1995, 1996, 1998, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,1995,1996,1998,2000,2002 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
@@ -93,6 +93,12 @@ __fpathconf (fd, name)
        case UFS_CIGAM:
          return UFS_LINK_MAX;
 
+       case REISERFS_SUPER_MAGIC:
+         return REISERFS_LINK_MAX;
+
+       case XFS_SUPER_MAGIC:
+         return XFS_LINK_MAX;
+
        default:
          return LINUX_LINK_MAX;
        }
index 5def46bd167673f0813385af095897722f56e912..108ffa705a26e8ad068170ee5a19fb7716948fa3 100644 (file)
@@ -1,5 +1,5 @@
 /* Linux specific extensions to fpathconf.
-   Copyright (C) 1991,95,96,98,99,2000,2001 Free Software Foundation, Inc.
+   Copyright (C) 1991,95,96,98,99,2000,2001,2002 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
@@ -82,6 +82,9 @@ __fpathconf (fd, name)
        case REISERFS_SUPER_MAGIC:
          return REISERFS_LINK_MAX;
 
+       case XFS_SUPER_MAGIC:
+         return XFS_LINK_MAX;
+
        default:
          return LINUX_LINK_MAX;
        }
This page took 0.045686 seconds and 5 git commands to generate.