]> xenbits.xensource.com Git - libvirt.git/commitdiff
util: virFileIsSharedFSType: Annotate (some) shared filesystem names
authorPeter Krempa <pkrempa@redhat.com>
Mon, 5 Sep 2022 10:39:10 +0000 (12:39 +0200)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 5 Sep 2022 15:32:13 +0000 (17:32 +0200)
Expand some of the uncommon or unobvious filesystem names in a comment.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/util/virfile.h

index 8d6df034f8f38cc4692fe5d763222653416ea910..c4d11ea21a316b478de84fb98fe27660fe849767 100644 (file)
@@ -213,15 +213,15 @@ bool virFileIsRegular(const char *file) ATTRIBUTE_NONNULL(1);
 
 enum {
     VIR_FILE_SHFS_NFS = (1 << 0),
-    VIR_FILE_SHFS_GFS2 = (1 << 1),
-    VIR_FILE_SHFS_OCFS = (1 << 2),
-    VIR_FILE_SHFS_AFS = (1 << 3),
-    VIR_FILE_SHFS_SMB = (1 << 4),
-    VIR_FILE_SHFS_CIFS = (1 << 5),
+    VIR_FILE_SHFS_GFS2 = (1 << 1), /* Global File System 2 */
+    VIR_FILE_SHFS_OCFS = (1 << 2), /* Oracle Cluster FS (2) */
+    VIR_FILE_SHFS_AFS = (1 << 3), /* Andrew File System */
+    VIR_FILE_SHFS_SMB = (1 << 4), /* Server message block - windows shares */
+    VIR_FILE_SHFS_CIFS = (1 << 5), /* Common Internet File System - windows shares */
     VIR_FILE_SHFS_CEPH = (1 << 6),
-    VIR_FILE_SHFS_GPFS = (1 << 7),
-    VIR_FILE_SHFS_QB = (1 << 8),
-    VIR_FILE_SHFS_ACFS = (1 << 9),
+    VIR_FILE_SHFS_GPFS = (1 << 7), /* General Parallel File System/IBM Spectrum Scale */
+    VIR_FILE_SHFS_QB = (1 << 8), /* Quobyte shared filesystem */
+    VIR_FILE_SHFS_ACFS = (1 << 9), /* Oracle ASM Cluster File System */
 };
 
 int virFileIsSharedFSType(const char *path, unsigned int fstypes) ATTRIBUTE_NONNULL(1);