mkfs.f2fs: treat db's data as hot one

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>
This commit is contained in:
Chao Yu 2018-02-28 17:03:44 +08:00 committed by Jaegeuk Kim
parent 6fdc37ff26
commit 7b73b6e4b2

View File

@ -69,6 +69,7 @@ const char *media_ext_lists[] = {
};
const char *hot_ext_lists[] = {
"db",
NULL
};