summaryrefslogtreecommitdiffstats
path: root/fs/udf/ecma_167.h
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2020-01-12 23:13:53 +0100
committerJan Kara <jack@suse.cz>2020-01-13 12:38:46 +0100
commit49be68c4931d9f0f171e5f01a574fc40205db2b5 (patch)
treeb165a3452f1b66c802cd5073311802eb5038fb46 /fs/udf/ecma_167.h
parenta4a8b99ec819ca60b49dc582a4287ef03411f117 (diff)
downloadlinux-stable-49be68c4931d9f0f171e5f01a574fc40205db2b5.tar.gz
linux-stable-49be68c4931d9f0f171e5f01a574fc40205db2b5.tar.bz2
linux-stable-49be68c4931d9f0f171e5f01a574fc40205db2b5.zip
udf: Fix meaning of ENTITYID_FLAGS_* macros to be really bitwise-or flags
Currently ENTITYID_FLAGS_* macros definitions are written as hex numbers but their meaning is not bitwise-or flags. But rather bit position. This is unusual and could be misleading. So change meaning of ENTITYID_FLAGS_* macros definitions to be really bitwise-or flags. Link: https://lore.kernel.org/r/20200112221353.29711-1-pali.rohar@gmail.com Signed-off-by: Pali Rohár <pali.rohar@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/udf/ecma_167.h')
-rw-r--r--fs/udf/ecma_167.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/udf/ecma_167.h b/fs/udf/ecma_167.h
index f9ee412fedc4..3fd85464abd5 100644
--- a/fs/udf/ecma_167.h
+++ b/fs/udf/ecma_167.h
@@ -95,8 +95,8 @@ struct regid {
} __packed;
/* Flags (ECMA 167r3 1/7.4.1) */
-#define ENTITYID_FLAGS_DIRTY 0x00
-#define ENTITYID_FLAGS_PROTECTED 0x01
+#define ENTITYID_FLAGS_DIRTY 0x01
+#define ENTITYID_FLAGS_PROTECTED 0x02
/* Volume Structure Descriptor (ECMA 167r3 2/9.1) */
#define VSD_STD_ID_LEN 5