[PATCH] quota_v2 module taints the kernel (missing licence)
Linux Kernel Mailing List <[email protected]> Wed, 19 Apr 2006 21:59:51 GMT
| Newsgroups | gmane.linux.kernel.commits.2-4 |
|---|---|
| Message-ID | <[email protected]> |
commit e2577e4a7fcb8905953295c4a53836bbec42a190 tree 401f10a1f94a01c8c71fbf5064f4b1eeb22ad538 parent 6b56c2053649d588df0ab750f404ccd39664f87f author Marek Szuba <[email protected]> Fri, 23 Dec 2005 17:29:44 +0100 committer Willy TARREAU <willy@pcw.(none)> Sat, 15 Apr 2006 12:26:34 +0200 [PATCH] quota_v2 module taints the kernel (missing licence) Apparently the quota_v2 module in 2.4 still lacks the licence macro and taints the kernel, even though the same module in 2.6 is correctly tagged as GPL. In case it makes things any easier, I am enclosing an appropriate patch. fs/quota_v2.c | 4 ++++ 1 files changed, 4 insertions(+) diff --git a/fs/quota_v2.c b/fs/quota_v2.c index 87ffeca..572f70d 100644 --- a/fs/quota_v2.c +++ b/fs/quota_v2.c @@ -14,6 +14,10 @@ #include <asm/byteorder.h> #include <asm/uaccess.h> +MODULE_AUTHOR("Jan Kara"); +MODULE_DESCRIPTION("Quota format v2 support"); +MODULE_LICENSE("GPL"); + #define __QUOTA_V2_PARANOIA typedef char *dqbuf_t;