Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
4ea02885
Commit
4ea02885
authored
May 12, 2011
by
David Sterba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
btrfs: use unsigned type for single bit bitfield
Signed-off-by:
David Sterba
<
dsterba@suse.cz
>
parent
7a36ddec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
fs/btrfs/ctree.h
fs/btrfs/ctree.h
+4
-4
No files found.
fs/btrfs/ctree.h
View file @
4ea02885
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment