On Thu, Sep 08, 2011 at 08:44:43AM +0800, Jan Kara wrote: > Writeback of an inode can be stalled by things like internal fs locks being > held. So in case we didn't write anything during a pass through b_io list, > just wait for a moment and try again. Reviewed-by: Wu Fengguang <fengguang.wu@xxxxxxxxx> with comments below. > + trace_writeback_wait(wb->bdi, work); > + spin_unlock(&wb->list_lock); __set_current_state(TASK_INTERRUPTIBLE); > + schedule_timeout(pause); > + pause <<= 1; > + if (pause > HZ / 10) > + pause = HZ / 10; It's a bit more safer to do if (pause < HZ / 10) pause <<= 1; in case someone hacked HZ=1. Thanks, Fengguang -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html