From 3ef3ca19b0557e7b79923217ecb1bdaa776f9983 Mon Sep 17 00:00:00 2001 From: mengfanhui Date: Fri, 5 Mar 2021 16:59:34 +0800 Subject: [PATCH] loongarch/configs: Fix unknown filesystem type gfs2 kylin inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I7KYTH CVE: NA ----------------------------------------------------------- While mounting the filesystem named 'gfs2' with the command such as "mount /dev/sda10 /mnt", we get: "mount: /mnt: unknown filesystem type 'gfs2'" Fix this by requiring "CONFIG_GFS2_FS=m" instead of "# CONFIG_GFS2_FS is not set" in the loongson3_defconfig configuration file After this commit, this issue is now resolved. Tested on loongarch 3C5000. Signed-off-by: mengfanhui --- arch/loongarch/configs/loongson3_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/loongarch/configs/loongson3_defconfig b/arch/loongarch/configs/loongson3_defconfig index 6cd26dd3c134..7e5dce24fec2 100644 --- a/arch/loongarch/configs/loongson3_defconfig +++ b/arch/loongarch/configs/loongson3_defconfig @@ -809,6 +809,7 @@ CONFIG_NFSD_V4=y CONFIG_NFSD_BLOCKLAYOUT=y CONFIG_CIFS=m # CONFIG_CIFS_DEBUG is not set +CONFIG_GFS2_FS=m CONFIG_9P_FS=y CONFIG_NLS_CODEPAGE_437=y CONFIG_NLS_CODEPAGE_936=y -- Gitee