diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-28 01:18:43 -0500 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-31 07:13:24 -0500 |
commit | cb5c6a2b2be59b480a3746c5113cb3411c053bff (patch) | |
tree | 16b67528c7ed1b8f1d6c4cbd9ac62cc1335a77a6 /fs/ubifs | |
parent | f10383006c26b33539820759b9dc8656497b02a4 (diff) |
UBIFS: use ubi_sync
UBI now has (fake for now, though) synchronization call - use
it.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/super.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index ee8e7749eae1..a14703e0a9ad 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c | |||
@@ -466,12 +466,7 @@ static int ubifs_sync_fs(struct super_block *sb, int wait) | |||
466 | if (err) | 466 | if (err) |
467 | return err; | 467 | return err; |
468 | 468 | ||
469 | /* | 469 | return ubi_sync(c->vi.ubi_num); |
470 | * We ought to call sync for c->ubi but it does not have one. If it had | ||
471 | * it would in turn call mtd->sync, however mtd operations are | ||
472 | * synchronous anyway, so we don't lose any sleep here. | ||
473 | */ | ||
474 | return err; | ||
475 | } | 470 | } |
476 | 471 | ||
477 | /** | 472 | /** |