Blame SOURCES/0420-Recognise-Lustre-as-a-remote-file-system-4530.patch

17b0f1
From f1cb9320c6aca21b17c9a120eb70a788df8ac6d5 Mon Sep 17 00:00:00 2001
17b0f1
From: "Brian J. Murrell" <brian@interlinx.bc.ca>
17b0f1
Date: Mon, 31 Oct 2016 23:48:00 -0400
17b0f1
Subject: [PATCH] Recognise Lustre as a remote file system (#4530)
17b0f1
17b0f1
Lustre is also a remote file system that wants the network to be up before it is mounted.
17b0f1
17b0f1
Cherry-picked from: 67ae43665e7e03becba197e98df5b3ce40269567
17b0f1
Resolves: #1390542
17b0f1
---
17b0f1
 src/shared/util.c | 6 +++++-
17b0f1
 1 file changed, 5 insertions(+), 1 deletion(-)
17b0f1
17b0f1
diff --git a/src/shared/util.c b/src/shared/util.c
17b0f1
index eab5ab8169..66729f70e5 100644
17b0f1
--- a/src/shared/util.c
17b0f1
+++ b/src/shared/util.c
17b0f1
@@ -1924,7 +1924,11 @@ bool fstype_is_network(const char *fstype) {
17b0f1
                 "nfs4\0"
17b0f1
                 "gfs\0"
17b0f1
                 "gfs2\0"
17b0f1
-                "glusterfs\0";
17b0f1
+                "glusterfs\0"
17b0f1
+                "pvfs2\0" /* OrangeFS */
17b0f1
+                "ocfs2\0"
17b0f1
+                "lustre\0"
17b0f1
+                ;
17b0f1
 
17b0f1
         const char *x;
17b0f1