diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-05-07 19:56:51 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-30 21:04:51 -0400 |
commit | d0490eea14cc9221cb8343091c216fb862d19958 (patch) | |
tree | c8c66d39694e5fe33d5063206a78240c57efdbdf /fs | |
parent | 3a0c0e26b64505522b8bce8578a6e61609c31318 (diff) | |
download | linux-3.10-d0490eea14cc9221cb8343091c216fb862d19958.tar.gz linux-3.10-d0490eea14cc9221cb8343091c216fb862d19958.tar.bz2 linux-3.10-d0490eea14cc9221cb8343091c216fb862d19958.zip |
jffs2: remove unnecessary GC pass on umount
We do not need to call 'jffs2_write_super()' on unmount. This function
causes a GC pass to make sure the current contents is pushed out with
the data which we already have on the media.
But this is not needed on unmount and only slows unmount down unnecessarily.
It is enough to just sync the write-buffer.
This call was added by one of the generic VFS rework patch-sets,
see 8c85e125124a473d6f3e9bb187b0b84207f81d91.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/jffs2/super.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index 3422a2db2ba..d3dc9d8d3a1 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c @@ -316,9 +316,6 @@ static void jffs2_put_super (struct super_block *sb) jffs2_dbg(2, "%s()\n", __func__); - if (sb->s_dirt) - jffs2_write_super(sb); - mutex_lock(&c->alloc_sem); jffs2_flush_wbuf_pad(c); mutex_unlock(&c->alloc_sem); |