summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorArtem Bityutskiy2009-01-06 18:54:02 +0100
committerArtem Bityutskiy2009-01-20 09:10:31 +0100
commita50412e3f8ce95d7ed558370d7dde5171fd04283 (patch)
treebe46a9482e613f77f2154b085292ba3dcdabe8d6 /fs
parentUBIFS: constify operations (diff)
downloadkernel-qcow2-linux-a50412e3f8ce95d7ed558370d7dde5171fd04283.tar.gz
kernel-qcow2-linux-a50412e3f8ce95d7ed558370d7dde5171fd04283.tar.xz
kernel-qcow2-linux-a50412e3f8ce95d7ed558370d7dde5171fd04283.zip
UBIFS: do not treat all data as short term
UBIFS wrongly tells UBI that all data is short term. Use proper hints instead. Thanks to Xiaochuan-Xu for noticing this. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ubifs/journal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ubifs/journal.c b/fs/ubifs/journal.c
index 9b7c54e0cd2a..a11ca0958a23 100644
--- a/fs/ubifs/journal.c
+++ b/fs/ubifs/journal.c
@@ -208,7 +208,7 @@ again:
offs = 0;
out:
- err = ubifs_wbuf_seek_nolock(wbuf, lnum, offs, UBI_SHORTTERM);
+ err = ubifs_wbuf_seek_nolock(wbuf, lnum, offs, wbuf->dtype);
if (err)
goto out_unlock;