ksmbd: change sid types to enumeration
authorNamjae Jeon <namjae.jeon@samsung.com>
Wed, 30 Jun 2021 00:38:13 +0000 (09:38 +0900)
committerNamjae Jeon <namjae.jeon@samsung.com>
Wed, 30 Jun 2021 05:43:56 +0000 (14:43 +0900)
Change sid types to enumeration.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/ksmbd/smbacl.h

index baa9b9b..3e1345e 100644 (file)
@@ -25,15 +25,20 @@ enum {
        ACCESS_DENIED,
 };
 
-#define SIDOWNER 1
-#define SIDGROUP 2
-#define SIDCREATOR_OWNER 3
-#define SIDCREATOR_GROUP 4
-#define SIDUNIX_USER 5
-#define SIDUNIX_GROUP 6
-#define SIDNFS_USER 7
-#define SIDNFS_GROUP 8
-#define SIDNFS_MODE 9
+/*
+ * Security ID types
+ */
+enum {
+       SIDOWNER = 1,
+       SIDGROUP,
+       SIDCREATOR_OWNER,
+       SIDCREATOR_GROUP,
+       SIDUNIX_USER,
+       SIDUNIX_GROUP,
+       SIDNFS_USER,
+       SIDNFS_GROUP,
+       SIDNFS_MODE,
+};
 
 /* Revision for ACLs */
 #define SD_REVISION    1