X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=fs%2Ffs-writeback.c;h=556af9eff33692ef523e6a39b6a5805f392847c7;hb=refs%2Fheads%2Faccepted%2Ftizen_mobile;hp=62d426d1d5e3495c5fe7d21d2349d75d73e7ccf2;hpb=9ba5ef02eb1f84b76c94e728e305fba7572afdd3;p=profile%2Fmobile%2Fplatform%2Fkernel%2Flinux-3.10-sc7730.git diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 62d426d..556af9e 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c @@ -470,28 +470,12 @@ __writeback_single_inode(struct inode *inode, struct writeback_control *wbc) * write_inode() */ spin_lock(&inode->i_lock); - + /* Clear I_DIRTY_PAGES if we've written out all dirty pages */ + if (!mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) + inode->i_state &= ~I_DIRTY_PAGES; dirty = inode->i_state & I_DIRTY; - inode->i_state &= ~I_DIRTY; - - /* - * Paired with smp_mb() in __mark_inode_dirty(). This allows - * __mark_inode_dirty() to test i_state without grabbing i_lock - - * either they see the I_DIRTY bits cleared or we see the dirtied - * inode. - * - * I_DIRTY_PAGES is always cleared together above even if @mapping - * still has dirty pages. The flag is reinstated after smp_mb() if - * necessary. This guarantees that either __mark_inode_dirty() - * sees clear I_DIRTY_PAGES or we see PAGECACHE_TAG_DIRTY. - */ - smp_mb(); - - if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) - inode->i_state |= I_DIRTY_PAGES; - + inode->i_state &= ~(I_DIRTY_SYNC | I_DIRTY_DATASYNC); spin_unlock(&inode->i_lock); - /* Don't write the inode if only I_DIRTY_PAGES was set */ if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) { int err = write_inode(inode, wbc); @@ -1162,11 +1146,12 @@ void __mark_inode_dirty(struct inode *inode, int flags) } /* - * Paired with smp_mb() in __writeback_single_inode() for the - * following lockless i_state test. See there for details. + * make sure that changes are seen by all cpus before we test i_state + * -- mikulas */ smp_mb(); + /* avoid the locking if we can */ if ((inode->i_state & flags) == flags) return;