diff options
author | Jeff Mahoney <jeffm@suse.com> | 2014-04-23 10:00:37 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2014-05-06 23:05:40 +0200 |
commit | 706a5323384d9ae973a72005b73987d39e009019 (patch) | |
tree | 19d0e910cf9ab5754f2e8eebc60a851ca7ebe660 /fs/reiserfs/reiserfs.h | |
parent | 098297b27d23ad9d0fc302e3417474d9342c6c14 (diff) | |
download | op-kernel-dev-706a5323384d9ae973a72005b73987d39e009019.zip op-kernel-dev-706a5323384d9ae973a72005b73987d39e009019.tar.gz |
reiserfs: cleanup, remove nblocks argument from journal_end
journal_end takes a block count argument but doesn't actually use it
for anything. We can remove it.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/reiserfs/reiserfs.h')
-rw-r--r-- | fs/reiserfs/reiserfs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/reiserfs/reiserfs.h b/fs/reiserfs/reiserfs.h index 2195e7f..010f00b 100644 --- a/fs/reiserfs/reiserfs.h +++ b/fs/reiserfs/reiserfs.h @@ -2914,10 +2914,9 @@ int journal_init(struct super_block *, const char *j_dev_name, int old_format, int journal_release(struct reiserfs_transaction_handle *, struct super_block *); int journal_release_error(struct reiserfs_transaction_handle *, struct super_block *); -int journal_end(struct reiserfs_transaction_handle *, struct super_block *, - unsigned long); -int journal_end_sync(struct reiserfs_transaction_handle *, struct super_block *, - unsigned long); +int journal_end(struct reiserfs_transaction_handle *, struct super_block *); +int journal_end_sync(struct reiserfs_transaction_handle *, + struct super_block *); int journal_mark_freed(struct reiserfs_transaction_handle *, struct super_block *, b_blocknr_t blocknr); int journal_transaction_should_end(struct reiserfs_transaction_handle *, int); |