diff options
author | David Sterba <dsterba@suse.com> | 2022-09-09 17:20:25 +0200 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2022-12-05 18:00:40 +0100 |
commit | d549ff7bdbe72f5e0e934895090fed2647e9813b (patch) | |
tree | 7f70c03d6a6731e292a3bff07eaaa329886fed7b | |
parent | 5565b8e0adcdd8ee32d02d82d98cdf6d966793c7 (diff) | |
download | linux-stable-d549ff7bdbe72f5e0e934895090fed2647e9813b.tar.gz linux-stable-d549ff7bdbe72f5e0e934895090fed2647e9813b.tar.bz2 linux-stable-d549ff7bdbe72f5e0e934895090fed2647e9813b.zip |
btrfs: add helper for bit enumeration
Define helper macro that can be used in enum {} to utilize the automatic
increment to define all bits without directly defining the values or
using additional linear bits.
1. capture the sequence value, N
2. use the value to define the given enum with N-th bit set
3. reset the sequence back to N
Use for enums that do not require fixed values for symbolic names (like
for on-disk structures):
enum {
ENUM_BIT(FIRST),
ENUM_BIT(SECOND),
ENUM_BIT(THIRD)
};
Where the values would be 0x1, 0x2 and 0x4.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | fs/btrfs/misc.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/btrfs/misc.h b/fs/btrfs/misc.h index f9850edfd726..69826ccd6644 100644 --- a/fs/btrfs/misc.h +++ b/fs/btrfs/misc.h @@ -10,6 +10,14 @@ #define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len)) +/* + * Enumerate bits using enum autoincrement. Define the @name as the n-th bit. + */ +#define ENUM_BIT(name) \ + __ ## name ## _BIT, \ + name = (1U << __ ## name ## _BIT), \ + __ ## name ## _SEQ = __ ## name ## _BIT + static inline void cond_wake_up(struct wait_queue_head *wq) { /* |