On Jun 05, 2008 15:23 +0530, Aneesh Kumar K.V wrote: > vfs: Don't flush delay buffer to disk > > In block_write_full_page() error case, we need to check the > delayed flag before flush bh to disk when trying to recover from > error. > @@ -1775,7 +1775,8 @@ static int __block_write_full_page(struct inode *inode, struct page *page, > bh = head; > /* Recovery: lock and submit the mapped buffers */ > do { > - if (buffer_mapped(bh) && buffer_dirty(bh)) { > + if (buffer_mapped(bh) && buffer_dirty(bh) > + && !buffer_delay(bh)) { Please use proper CodingStyle here. Firstly, this can fit on the previous line < 80 columns so it shouldn't be split. Secondly, if the line had to be split, the "&&" should go at the end of the previous line. Thirdly, the continued line should align with the 'if (' on the previous line. Cheers, Andreas -- Andreas Dilger Sr. Staff Engineer, Lustre Group Sun Microsystems of Canada, Inc. -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html