summaryrefslogtreecommitdiff
path: root/src/basic/mount-util.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2016-04-28 13:49:16 -0400
committerSven Eden <yamakuzure@gmx.net>2017-06-16 10:12:58 +0200
commit37a18e3c54f5c49be532a1dbd21a0af6fd4fd27c (patch)
treede736c1137bcb570e57c84b9619d4e1ce90bc9e6 /src/basic/mount-util.c
parentda2520e2ee5a89643c3178c94813548de7f6e3d7 (diff)
basic/mount-util: recognize pvfs2 as network fs (#3140)
Added to kernel 4.6.
Diffstat (limited to 'src/basic/mount-util.c')
-rw-r--r--src/basic/mount-util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c
index 51734a1bf..d5ec2afdd 100644
--- a/src/basic/mount-util.c
+++ b/src/basic/mount-util.c
@@ -499,7 +499,9 @@ bool fstype_is_network(const char *fstype) {
"nfs4\0"
"gfs\0"
"gfs2\0"
- "glusterfs\0";
+ "glusterfs\0"
+ "pvfs2\0" /* OrangeFS */
+ ;
const char *x;