diff options
author | Dave Martin <Dave.Martin@arm.com> | 2019-02-14 12:49:36 +0100 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2019-03-29 15:41:53 +0100 |
commit | dc52f31a928ba591757aac4e72b35ea163713b57 (patch) | |
tree | a85714999992de564d3a2b6b01cf9a6a886fe6fe | |
parent | KVM: Allow 2048-bit register access via ioctl interface (diff) | |
download | linux-dc52f31a928ba591757aac4e72b35ea163713b57.tar.xz linux-dc52f31a928ba591757aac4e72b35ea163713b57.zip |
KVM: arm64: Add missing #include of <linux/string.h> in guest.c
arch/arm64/kvm/guest.c uses the string functions, but the
corresponding header is not included.
We seem to get away with this for now, but for completeness this
patch adds the #include, in preparation for adding yet more
memset() calls.
Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Tested-by: zhang.lei <zhang.lei@jp.fujitsu.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
-rw-r--r-- | arch/arm64/kvm/guest.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/kvm/guest.c b/arch/arm64/kvm/guest.c index 62514cba95ca..3e38eb28b03c 100644 --- a/arch/arm64/kvm/guest.c +++ b/arch/arm64/kvm/guest.c @@ -23,6 +23,7 @@ #include <linux/err.h> #include <linux/kvm_host.h> #include <linux/module.h> +#include <linux/string.h> #include <linux/vmalloc.h> #include <linux/fs.h> #include <kvm/arm_psci.h> |