diff options
author | David Howells <dhowells@redhat.com> | 2013-05-04 08:48:27 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-05 14:38:00 -0700 |
commit | 9e6879460c8edb0cd3c24c09b83d06541b5af0dc (patch) | |
tree | 1f3b8b270280841c16771d02b9ceab5fc1733957 /lib | |
parent | 534c97b0950b1967bca1c753aeaed32f5db40264 (diff) | |
download | linux-3.10-9e6879460c8edb0cd3c24c09b83d06541b5af0dc.tar.gz linux-3.10-9e6879460c8edb0cd3c24c09b83d06541b5af0dc.tar.bz2 linux-3.10-9e6879460c8edb0cd3c24c09b83d06541b5af0dc.zip |
Give the OID registry file module info to avoid kernel tainting
Give the OID registry file module information so that it doesn't taint the
kernel when compiled as a module and loaded.
Reported-by: Dros Adamson <Weston.Adamson@netapp.com>
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Trond Myklebust <Trond.Myklebust@netapp.com>
cc: stable@vger.kernel.org
cc: linux-nfs@vger.kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oid_registry.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/oid_registry.c b/lib/oid_registry.c index d8de11f4590..318f382a010 100644 --- a/lib/oid_registry.c +++ b/lib/oid_registry.c @@ -9,6 +9,7 @@ * 2 of the Licence, or (at your option) any later version. */ +#include <linux/module.h> #include <linux/export.h> #include <linux/oid_registry.h> #include <linux/kernel.h> @@ -16,6 +17,10 @@ #include <linux/bug.h> #include "oid_registry_data.c" +MODULE_DESCRIPTION("OID Registry"); +MODULE_AUTHOR("Red Hat, Inc."); +MODULE_LICENSE("GPL"); + /** * look_up_OID - Find an OID registration for the specified data * @data: Binary representation of the OID |