summaryrefslogtreecommitdiff
path: root/extent_io.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2016-07-27 23:19:20 +0200
committerDavid Sterba <dsterba@suse.com>2016-07-28 14:08:30 +0200
commitbf3a4c5f1b532a5cad84cff8b0792839df43584c (patch)
tree82afca8a7362f403b3ac68b6839d2f238d53d218 /extent_io.h
parent24f1713777f02300d0c48ddc142b2c711e462b65 (diff)
btrfs-progs: use unsigned type for extent_buffer flags
We're doing bit operations. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'extent_io.h')
-rw-r--r--extent_io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/extent_io.h b/extent_io.h
index 94a42bf5..9153a556 100644
--- a/extent_io.h
+++ b/extent_io.h
@@ -95,7 +95,7 @@ struct extent_buffer {
struct list_head lru;
struct list_head recow;
int refs;
- int flags;
+ u32 flags;
int fd;
char data[];
};