1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-01 17:51:22 +03:00

basic/mount-util: recognize pvfs2 as network fs (#3140)

Added to kernel 4.6.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-04-28 13:49:16 -04:00 committed by Lennart Poettering
parent 5aa3eba50c
commit a44cb5cbf7

View File

@ -498,7 +498,9 @@ bool fstype_is_network(const char *fstype) {
"nfs4\0" "nfs4\0"
"gfs\0" "gfs\0"
"gfs2\0" "gfs2\0"
"glusterfs\0"; "glusterfs\0"
"pvfs2\0" /* OrangeFS */
;
const char *x; const char *x;