The user tool modinfo is used to get information on kernel modules, including a description where it is available. This patch adds a brief MODULE_DESCRIPTION to the kvm.ko module Signed-off-by: Rob Gill <rrobgill@xxxxxxxxxxxxxx> --- virt/kvm/kvm_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index a852af5c3..008cd4050 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -68,6 +68,7 @@ MODULE_AUTHOR("Qumranet"); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Kernel-based Virtual Machine driver"); /* Architectures should define their poll value according to the halt latency */ unsigned int halt_poll_ns = KVM_HALT_POLL_NS_DEFAULT; -- 2.17.1