KVM: x86: MMU: make array audit_point_name static
"Linux Kernel Mailing List" <[email protected]>
| Newsgroups | gmane.linux.kernel.commits.head |
|---|---|
| Message-ID | <[email protected]> |
Web: https://git.kernel.org/torvalds/c/0d37d26f11bc1c0085d0c89ba603e3bb2c7f7076 Commit: 0d37d26f11bc1c0085d0c89ba603e3bb2c7f7076 Parent: 858ac87fc2ff7be8fedfa8dd2ba47627068c2eae Refname: refs/heads/master Author: Colin Ian King <[email protected]> AuthorDate: Thu Nov 30 12:04:22 2017 +0000 Committer: Paolo Bonzini <[email protected]> CommitDate: Thu Dec 14 09:26:41 2017 +0100 KVM: x86: MMU: make array audit_point_name static The array audit_point_name is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: arch/x86/kvm/mmu_audit.c:22:12: warning: symbol 'audit_point_name' was not declared. Should it be static? Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]> --- arch/x86/kvm/mmu_audit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kvm/mmu_audit.c b/arch/x86/kvm/mmu_audit.c index d22ddbdf5e6e..1272861e77b9 100644 --- a/arch/x86/kvm/mmu_audit.c +++ b/arch/x86/kvm/mmu_audit.c @@ -19,7 +19,7 @@ #include <linux/ratelimit.h> -char const *audit_point_name[] = { +static char const *audit_point_name[] = { "pre page fault", "post page fault", "pre pte write", -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html