From: David Sterba Date: Thu, 12 May 2011 16:13:12 +0000 (+0200) Subject: btrfs: use unsigned type for single bit bitfield X-Git-Tag: v3.0-rc2~5^2~21^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4ea028859bbdad34b84c9951fbb832ae10c6a96c;p=platform%2Fkernel%2Flinux-exynos.git btrfs: use unsigned type for single bit bitfield Signed-off-by: David Sterba --- diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index e37d441..343304d 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h @@ -740,12 +740,12 @@ struct btrfs_space_info { */ unsigned long reservation_progress; - int full:1; /* indicates that we cannot allocate any more + unsigned int full:1; /* indicates that we cannot allocate any more chunks for this space */ - int chunk_alloc:1; /* set if we are allocating a chunk */ + unsigned int chunk_alloc:1; /* set if we are allocating a chunk */ - int force_alloc; /* set if we need to force a chunk alloc for - this space */ + unsigned int force_alloc; /* set if we need to force a chunk + alloc for this space */ struct list_head list;