On Thu, Jun 10, 2010 at 05:19:54PM +1000, Dave Chinner wrote: > From: Dave Chinner <dchinner@xxxxxxxxxx> > > It makes no sense having the emergency thaw code in fs/buffer.c when all of > it's operations are one superblocks and the code it executes is all in > fs/super.c. Move the code there and clean it up. > +static void thaw_super_emergency(struct super_block *sb, void *unused) > +{ > + > + if (sb->s_bdev) { > + char b[BDEVNAME_SIZE]; > + printk(KERN_WARNING "Emergency Thaw on %s.\n", > + bdevname(sb->s_bdev, b)); > + } > + while (!__thaw_super(sb, 1)); Please move the ; to a separate line to make the loop better redable. -- 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