Skip to content

Commit

Permalink
ext4: Fix build warning in ext4_dirty_inode()
Browse files Browse the repository at this point in the history
This fixes the following warning:

fs/ext4/inode.c: In function 'ext4_dirty_inode':
fs/ext4/inode.c:5615: warning: unused variable 'current_handle'

We remove the jbd_debug() statement which does use current_handle, as
it's not terribly important in the grand scheme of things.

Thanks to Stephen Rothwell for pointing this out.

Signed-off-by: Curt Wohlgemuth <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
  • Loading branch information
Curt Wohlgemuth authored and tytso committed Oct 3, 2009
1 parent f0e2dfa commit 74072d0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fs/ext4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -5612,14 +5612,12 @@ int ext4_mark_inode_dirty(handle_t *handle, struct inode *inode)
*/
void ext4_dirty_inode(struct inode *inode)
{
handle_t *current_handle = ext4_journal_current_handle();
handle_t *handle;

handle = ext4_journal_start(inode, 2);
if (IS_ERR(handle))
goto out;

jbd_debug(5, "marking dirty. outer handle=%p\n", current_handle);
ext4_mark_inode_dirty(handle, inode);

ext4_journal_stop(handle);
Expand Down

0 comments on commit 74072d0

Please sign in to comment.