Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fs, jbd: pull your plug when waiting for space
Browse files Browse the repository at this point in the history
With an -rt kernel, and a heavy sync IO load, tasks can jam
up on journal locks without unplugging, which can lead to
terminal IO starvation.  Unplug and schedule when waiting for space.

Signed-off-by: Mike Galbraith <[email protected]>
Cc: Steven Rostedt <[email protected]>
Cc: Theodore Tso <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
  • Loading branch information
Mike Galbraith authored and Steven Rostedt committed Dec 18, 2013
1 parent e91f4ed commit 27556a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fs/jbd/checkpoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ void __log_wait_for_space(journal_t *journal)
if (journal->j_flags & JFS_ABORT)
return;
spin_unlock(&journal->j_state_lock);
if (current->plug)
io_schedule();
mutex_lock(&journal->j_checkpoint_mutex);

/*
Expand Down

0 comments on commit 27556a5

Please sign in to comment.