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
7928d672
Commit
7928d672
authored
Nov 30, 2015
by
David Sterba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
btrfs: cleanup, remove stray return statements
Signed-off-by:
David Sterba
<
dsterba@suse.com
>
parent
352dd9c8
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
9 deletions
+0
-9
fs/btrfs/disk-io.c
fs/btrfs/disk-io.c
+0
-1
fs/btrfs/inode.c
fs/btrfs/inode.c
+0
-1
fs/btrfs/locking.c
fs/btrfs/locking.c
+0
-2
fs/btrfs/raid56.c
fs/btrfs/raid56.c
+0
-2
fs/btrfs/scrub.c
fs/btrfs/scrub.c
+0
-2
fs/btrfs/volumes.c
fs/btrfs/volumes.c
+0
-1
No files found.
fs/btrfs/disk-io.c
View file @
7928d672
...
...
@@ -3962,7 +3962,6 @@ static void __btrfs_btree_balance_dirty(struct btrfs_root *root,
balance_dirty_pages_ratelimited
(
root
->
fs_info
->
btree_inode
->
i_mapping
);
}
return
;
}
void
btrfs_btree_balance_dirty
(
struct
btrfs_root
*
root
)
...
...
fs/btrfs/inode.c
View file @
7928d672
...
...
@@ -5304,7 +5304,6 @@ void btrfs_evict_inode(struct inode *inode)
no_delete:
btrfs_remove_delayed_node
(
inode
);
clear_inode
(
inode
);
return
;
}
/*
...
...
fs/btrfs/locking.c
View file @
7928d672
...
...
@@ -56,7 +56,6 @@ void btrfs_set_lock_blocking_rw(struct extent_buffer *eb, int rw)
atomic_dec
(
&
eb
->
spinning_readers
);
read_unlock
(
&
eb
->
lock
);
}
return
;
}
/*
...
...
@@ -96,7 +95,6 @@ void btrfs_clear_lock_blocking_rw(struct extent_buffer *eb, int rw)
waitqueue_active
(
&
eb
->
read_lock_wq
))
wake_up
(
&
eb
->
read_lock_wq
);
}
return
;
}
/*
...
...
fs/btrfs/raid56.c
View file @
7928d672
...
...
@@ -503,7 +503,6 @@ static void cache_rbio(struct btrfs_raid_bio *rbio)
}
spin_unlock_irqrestore
(
&
table
->
cache_lock
,
flags
);
return
;
}
/*
...
...
@@ -906,7 +905,6 @@ static void raid_write_end_io(struct bio *bio)
err
=
-
EIO
;
rbio_orig_end_io
(
rbio
,
err
);
return
;
}
/*
...
...
fs/btrfs/scrub.c
View file @
7928d672
...
...
@@ -1514,8 +1514,6 @@ static void scrub_recheck_block(struct btrfs_fs_info *fs_info,
if
(
sblock
->
no_io_error_seen
)
scrub_recheck_block_checksum
(
sblock
);
return
;
}
static
inline
int
scrub_check_fsid
(
u8
fsid
[],
...
...
fs/btrfs/volumes.c
View file @
7928d672
...
...
@@ -1642,7 +1642,6 @@ static void update_dev_time(char *path_name)
return
;
file_update_time
(
filp
);
filp_close
(
filp
,
NULL
);
return
;
}
static
int
btrfs_rm_dev_item
(
struct
btrfs_root
*
root
,
...
...
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