diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-28 13:49:16 -0400 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-04-28 19:49:16 +0200 |
commit | a44cb5cbf79cd2af699e981256fa25b6246d30d8 (patch) | |
tree | 762cca16eab2f3e8543c3629df5af2814972034c /src | |
parent | 5aa3eba50c52722e57cf444432ef80acf3298a85 (diff) |
basic/mount-util: recognize pvfs2 as network fs (#3140)
Added to kernel 4.6.
Diffstat (limited to 'src')
-rw-r--r-- | src/basic/mount-util.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index 5faa2eba05..ba698959b7 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -498,7 +498,9 @@ bool fstype_is_network(const char *fstype) { "nfs4\0" "gfs\0" "gfs2\0" - "glusterfs\0"; + "glusterfs\0" + "pvfs2\0" /* OrangeFS */ + ; const char *x; |