projects
/
platform
/
upstream
/
f2fs-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fdc37f
)
mkfs.f2fs: treat db's data as hot one
author
Chao Yu
<yuchao0@huawei.com>
Wed, 28 Feb 2018 09:03:44 +0000
(17:03 +0800)
committer
Jaegeuk Kim
<jaegeuk@kernel.org>
Mon, 7 May 2018 21:49:38 +0000
(14:49 -0700)
DB files like .db, .db-journal, .db-wal, .db-shm are very active, this
patch adds db file type to hot file extension list by default.
Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
mkfs/f2fs_format.c
patch
|
blob
|
history
diff --git
a/mkfs/f2fs_format.c
b/mkfs/f2fs_format.c
index
662ac52
..
8a19516
100644
(file)
--- a/
mkfs/f2fs_format.c
+++ b/
mkfs/f2fs_format.c
@@
-69,6
+69,7
@@
const char *media_ext_lists[] = {
};
const char *hot_ext_lists[] = {
+ "db",
NULL
};