diff options
author | Andreas Jaeger <aj@suse.de> | 2013-03-06 16:35:19 +0100 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2013-03-06 16:35:19 +0100 |
commit | 67525cb83217602994d2b75c4a07c9d92705079f (patch) | |
tree | dafb888df124aadc9bca3634f75ca5b2cf38ca35 /sysdeps/unix/sysv/linux/pathconf.c | |
parent | 5c56e933683b20ce48512ca1c17c3d7a967998fb (diff) | |
download | glibc-67525cb83217602994d2b75c4a07c9d92705079f.tar.gz glibc-67525cb83217602994d2b75c4a07c9d92705079f.tar.xz glibc-67525cb83217602994d2b75c4a07c9d92705079f.zip |
Sync with Linux 3.8
Diffstat (limited to 'sysdeps/unix/sysv/linux/pathconf.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/pathconf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/pathconf.c b/sysdeps/unix/sysv/linux/pathconf.c index e86925f7d6..edc691e966 100644 --- a/sysdeps/unix/sysv/linux/pathconf.c +++ b/sysdeps/unix/sysv/linux/pathconf.c @@ -168,6 +168,9 @@ __statfs_link_max (int result, const struct statfs *fsbuf, const char *file, the hard way. */ return distinguish_extX (fsbuf, file, fd); + case F2FS_SUPER_MAGIC: + return F2FS_LINK_MAX; + case MINIX_SUPER_MAGIC: case MINIX_SUPER_MAGIC2: return MINIX_LINK_MAX; @@ -221,6 +224,9 @@ __statfs_filesize_max (int result, const struct statfs *fsbuf) switch (fsbuf->f_type) { + case F2FS_SUPER_MAGIC: + return 256; + case BTRFS_SUPER_MAGIC: return 255; |