mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-28 04:21:03 +00:00
Merge pull request #484 from ganeshmaharaj/virtio-fs-4-19-28
kernel: Enable virtio-fs in kata kernel
This commit is contained in:
commit
4bb97ef14a
@ -1,13 +1,13 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 4.19.24 Kernel Configuration
|
||||
# Linux/x86 4.19.28 Kernel Configuration
|
||||
#
|
||||
|
||||
#
|
||||
# Compiler: gcc (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
|
||||
# Compiler: gcc (Ubuntu 7.4.0-1ubuntu1~16.04~ppa1) 7.4.0
|
||||
#
|
||||
CONFIG_CC_IS_GCC=y
|
||||
CONFIG_GCC_VERSION=50400
|
||||
CONFIG_GCC_VERSION=70400
|
||||
CONFIG_CLANG_VERSION=0
|
||||
CONFIG_IRQ_WORK=y
|
||||
CONFIG_BUILDTIME_EXTABLE_SORT=y
|
||||
@ -2597,7 +2597,9 @@ CONFIG_FANOTIFY=y
|
||||
# CONFIG_QUOTA is not set
|
||||
CONFIG_AUTOFS4_FS=y
|
||||
CONFIG_AUTOFS_FS=y
|
||||
# CONFIG_FUSE_FS is not set
|
||||
CONFIG_FUSE_FS=y
|
||||
# CONFIG_CUSE is not set
|
||||
CONFIG_VIRTIO_FS=y
|
||||
# CONFIG_OVERLAY_FS is not set
|
||||
|
||||
#
|
||||
|
@ -1 +1 @@
|
||||
36
|
||||
37
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
From 074a6a9d83a4e790f892ef0fc91cdabbfbf26202 Mon Sep 17 00:00:00 2001
|
||||
From 33ffc9a93a1d9e72594d5eb3e4fc583a1a2911d1 Mon Sep 17 00:00:00 2001
|
||||
From: Jianyong Wu <jianyong.wu@arm.com>
|
||||
Date: Tue, 19 Feb 2019 01:15:32 -0500
|
||||
Subject: [PATCH] Enable memory-hotplug using probe for arm64
|
||||
Subject: [PATCH 2/5] Enable memory-hotplug using probe for arm64
|
||||
|
||||
---
|
||||
arch/arm64/Kconfig | 7 +++++++
|
||||
@ -94,5 +94,5 @@ index 146c04ceaa51..d276bd4d38b5 100644
|
||||
+ return 0;
|
||||
+}
|
||||
--
|
||||
2.17.1
|
||||
2.20.1
|
||||
|
@ -1,7 +1,7 @@
|
||||
From 0a235af3130a0c40fe2198f18198c7ac4e799a03 Mon Sep 17 00:00:00 2001
|
||||
From cab495651e8f71c39e87a08abbe051916110b3ca Mon Sep 17 00:00:00 2001
|
||||
From: Julio Montes <julio.montes@intel.com>
|
||||
Date: Mon, 18 Sep 2017 11:46:59 -0500
|
||||
Subject: [PATCH 2/3] NO-UPSTREAM: 9P: always use cached inode to fill in
|
||||
Subject: [PATCH 3/5] NO-UPSTREAM: 9P: always use cached inode to fill in
|
||||
v9fs_vfs_getattr
|
||||
|
||||
So that if in cache=none mode, we don't have to lookup server that
|
||||
@ -17,10 +17,10 @@ Signed-off-by: Peng Tao <bergwolf@gmail.com>
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/fs/9p/vfs_inode.c b/fs/9p/vfs_inode.c
|
||||
index bdabb27..30395e0 100644
|
||||
index 85ff859d3af5..efdc2a8f37bb 100644
|
||||
--- a/fs/9p/vfs_inode.c
|
||||
+++ b/fs/9p/vfs_inode.c
|
||||
@@ -1068,7 +1068,7 @@ v9fs_vfs_getattr(const struct path *path, struct kstat *stat,
|
||||
@@ -1080,7 +1080,7 @@ v9fs_vfs_getattr(const struct path *path, struct kstat *stat,
|
||||
|
||||
p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
|
||||
v9ses = v9fs_dentry2v9ses(dentry);
|
||||
@ -30,10 +30,10 @@ index bdabb27..30395e0 100644
|
||||
return 0;
|
||||
}
|
||||
diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
|
||||
index 7f6ae21..5d7e970 100644
|
||||
index 4823e1c46999..daa5e6a41864 100644
|
||||
--- a/fs/9p/vfs_inode_dotl.c
|
||||
+++ b/fs/9p/vfs_inode_dotl.c
|
||||
@@ -481,7 +481,7 @@ v9fs_vfs_getattr_dotl(const struct path *path, struct kstat *stat,
|
||||
@@ -480,7 +480,7 @@ v9fs_vfs_getattr_dotl(const struct path *path, struct kstat *stat,
|
||||
|
||||
p9_debug(P9_DEBUG_VFS, "dentry: %p\n", dentry);
|
||||
v9ses = v9fs_dentry2v9ses(dentry);
|
||||
@ -43,5 +43,5 @@ index 7f6ae21..5d7e970 100644
|
||||
return 0;
|
||||
}
|
||||
--
|
||||
2.9.5
|
||||
2.20.1
|
||||
|
@ -1,7 +1,7 @@
|
||||
From e35cb54fb8d07dd80fa8df44ff0de6eb5ff8d6cf Mon Sep 17 00:00:00 2001
|
||||
From d78297bf9d8e41711bddc6003f460e815340a214 Mon Sep 17 00:00:00 2001
|
||||
From: Arjan van de Ven <arjan@linux.intel.com>
|
||||
Date: Fri, 10 Aug 2018 13:22:08 +0000
|
||||
Subject: [PATCH 108/108] Compile in evged always
|
||||
Subject: [PATCH 4/5] Compile in evged always
|
||||
|
||||
We need evged for NEMU (and in general for hw reduced)
|
||||
|
||||
@ -25,5 +25,5 @@ index 6d59aa109a91..97f2fbbd5014 100644
|
||||
acpi-y += property.o
|
||||
acpi-$(CONFIG_X86) += acpi_cmos_rtc.o
|
||||
--
|
||||
2.18.0
|
||||
2.20.1
|
||||
|
@ -1,8 +1,8 @@
|
||||
From 60a4fed76e63c36cd327c4b404ec163e93a4805e Mon Sep 17 00:00:00 2001
|
||||
From 6823b343a7c5f6fc3b93d4a00e919d14cb6a4adb Mon Sep 17 00:00:00 2001
|
||||
From: Penny Zheng <penny.zheng@arm.com>
|
||||
Date: Tue, 19 Feb 2019 16:05:44 +0800
|
||||
Subject: [PATCH] arm64: backport Arm64 KVM Dynamic IPA and 52bit IPA support
|
||||
to 4.19.X
|
||||
Subject: [PATCH 5/5] arm64: backport Arm64 KVM Dynamic IPA and 52bit IPA
|
||||
support to 4.19.X
|
||||
|
||||
This patch is based on Suzuki K Poulose's
|
||||
[v6,00/18] kvm: arm64: Dynamic IPA and 52bit IPA
|
||||
@ -258,10 +258,10 @@ index 460d616bb2d6..f6a7ea805232 100644
|
||||
|
||||
#endif /* __ARM_S2_PGTABLE_H_ */
|
||||
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
|
||||
index 1b1a0e95c751..f9162da575a9 100644
|
||||
index 881bea194d53..d77da7a56eb5 100644
|
||||
--- a/arch/arm64/Kconfig
|
||||
+++ b/arch/arm64/Kconfig
|
||||
@@ -1132,6 +1132,19 @@ config ARM64_RAS_EXTN
|
||||
@@ -1139,6 +1139,19 @@ config ARM64_RAS_EXTN
|
||||
and access the new registers if the system supports the extension.
|
||||
Platform RAS features may additionally depend on firmware support.
|
||||
|
||||
@ -2273,5 +2273,5 @@ index a2a175b08b17..b3d1f0985117 100644
|
||||
}
|
||||
|
||||
--
|
||||
2.17.1
|
||||
2.20.1
|
||||
|
Loading…
Reference in New Issue
Block a user