mkfs.f2fs: add VM disk files to hot data types

commit 5144f2f71b
category: bugfix
issue: #I6VAS0
CVE: NA

Signed-off-by: DongSenhao <dongsenhao2@huawei.com>
---------------------------------------

Similar to .db files, these are randomly updated extremely frequently.

Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: dongsenhao <dongsenhao2@huawei.com>
This commit is contained in:
Park Ju Hyung 2021-02-14 18:43:11 +09:00 committed by dongsenhao
parent 83c124114a
commit 964aab30b3

View File

@ -98,6 +98,13 @@ const char *media_ext_lists[] = {
const char *hot_ext_lists[] = {
"db",
#ifndef WITH_ANDROID
/* Virtual machines */
"vmdk", // VMware or VirtualBox
"vdi", // VirtualBox
"qcow2", // QEMU
#endif
NULL
};