diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-01-06 16:00:03 -0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2015-01-09 17:02:27 -0800 |
commit | df1991391f9301efbd5e46fb776bf5103d4c59f8 (patch) | |
tree | 170a6a938f77b6ce1ae78aa42f104d64abb6a7ba /fs | |
parent | 9e5ba77fdbe3fea86b1e36903dd696b24b1c4607 (diff) |
f2fs: fix wrong unlock_page call
This patch removes wrongly called unlock_page.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/f2fs/data.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index b48b355104c..a7b905cb05f 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -837,7 +837,6 @@ write: /* we should bypass data pages to proceed the kworkder jobs */ if (unlikely(f2fs_cp_error(sbi))) { SetPageError(page); - unlock_page(page); goto out; } |