From 802daa76856cb6afe404aced30ad99711e9b022b Mon Sep 17 00:00:00 2001 From: Rob Norris Date: Thu, 18 Jul 2024 12:37:43 +1000 Subject: [PATCH] zvol_impl: document and tidy flags ZVOL_DUMPIFIED is a vestigial Solaris leftover, and not used anywhere. Reviewed-by: Tony Hutter Reviewed-by: Brian Behlendorf Sponsored-by: Klara, Inc. Sponsored-by: Wasabi Technology, Inc. Signed-off-by: Rob Norris Closes #16364 --- include/sys/zvol_impl.h | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/include/sys/zvol_impl.h b/include/sys/zvol_impl.h index 3dc1702e34a2..f4278ef3a33d 100644 --- a/include/sys/zvol_impl.h +++ b/include/sys/zvol_impl.h @@ -27,16 +27,9 @@ #include -#define ZVOL_RDONLY 0x1 -/* - * Whether the zvol has been written to (as opposed to ZVOL_RDONLY, which - * specifies whether or not the zvol _can_ be written to) - */ -#define ZVOL_WRITTEN_TO 0x2 - -#define ZVOL_DUMPIFIED 0x4 - -#define ZVOL_EXCL 0x8 +#define ZVOL_RDONLY (1<<0) /* zvol is readonly (writes rejected) */ +#define ZVOL_WRITTEN_TO (1<<1) /* zvol has been written to (needs flush) */ +#define ZVOL_EXCL (1<<2) /* zvol has O_EXCL client right now */ /* * The in-core state of each volume.