chiark / gitweb /
basic/mount-util: recognize pvfs2 as network fs (#3140)
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Apr 2016 17:49:16 +0000 (13:49 -0400)
committerSven Eden <yamakuzure@gmx.net>
Fri, 16 Jun 2017 08:12:58 +0000 (10:12 +0200)
Added to kernel 4.6.

src/basic/mount-util.c

index 51734a1bf9b2401950d748c7f0906c3f1e80ba4d..d5ec2afdd99110d5f44f8578feb02d7462316adc 100644 (file)
@@ -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;