diff options
author | Zheng Liu <wenqing.lz@taobao.com> | 2012-08-19 18:07:40 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-08-19 18:07:40 -0400 |
commit | 8a2f8460e816f4786939a0cefbda35af6bd1a1c5 (patch) | |
tree | 7871866afe105ac465f78096017f42c6b8ae90a8 /fs | |
parent | 30cb27d661f5fdc582add0a9c297946a18ee4a4b (diff) |
ext4: remove duplicated declarations in inode.c
In patch cb20d5188366f04d96d2e07b1240cc92170ade40, ext4_set_bh_endio
and ext4_end_io_buffer_write are declared at the beginning of inode.c,
and again later on in the middle of the file. Remove the second set
of duplicated function declarations.
Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/inode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 6324f74e0342..b4effbda7a96 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -1954,9 +1954,6 @@ out: return ret; } -static int ext4_set_bh_endio(struct buffer_head *bh, struct inode *inode); -static void ext4_end_io_buffer_write(struct buffer_head *bh, int uptodate); - /* * Note that we don't need to start a transaction unless we're journaling data * because we should have holes filled from ext4_page_mkwrite(). We even don't |