diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2013-08-04 23:10:28 +0900 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-08-06 22:00:35 +0900 |
commit | df273efc36024a9ea97fd687d638a70c3ea8c37a (patch) | |
tree | 131496bea8990ea0b9d3bf91150c8b9070ef5874 /fs/f2fs | |
parent | d2dc095f4280ad5fdea33769e8e119fd16648426 (diff) | |
download | op-kernel-dev-df273efc36024a9ea97fd687d638a70c3ea8c37a.zip op-kernel-dev-df273efc36024a9ea97fd687d638a70c3ea8c37a.tar.gz |
f2fs: remove redundant code from f2fs_write_begin
This code is being used for nobh_write_end() function.
But since now f2fs_write_end function is added so
there is no need for this code.
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Pankaj Kumar <pankaj.km@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs')
-rw-r--r-- | fs/f2fs/data.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index 027341c..f458883 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -634,9 +634,6 @@ static int f2fs_write_begin(struct file *file, struct address_space *mapping, int err = 0; int ilock; - /* for nobh_write_end */ - *fsdata = NULL; - f2fs_balance_fs(sbi); repeat: page = grab_cache_page_write_begin(mapping, index, flags); |