]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
netfilter: missing module license in the nf_reject_ipvX modules
authorPablo Neira Ayuso <pablo@netfilter.org>
Fri, 10 Oct 2014 09:25:20 +0000 (11:25 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Sat, 11 Oct 2014 12:59:41 +0000 (14:59 +0200)
[   23.545204] nf_reject_ipv4: module license 'unspecified' taints kernel.

Fixes: c8d7b98 ("netfilter: move nf_send_resetX() code to nf_reject_ipvX modules")
Reported-by: Dave Young <dyoung@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/ipv4/netfilter/nf_reject_ipv4.c
net/ipv6/netfilter/nf_reject_ipv6.c

index b023b4eb1a966415c1ae43582428566036379d7a..92b303dbd5fcdd5c571e707022b2b8f29f35cad8 100644 (file)
@@ -6,6 +6,7 @@
  * published by the Free Software Foundation.
  */
 
+#include <linux/module.h>
 #include <net/ip.h>
 #include <net/tcp.h>
 #include <net/route.h>
@@ -125,3 +126,5 @@ void nf_send_reset(struct sk_buff *oldskb, int hook)
        kfree_skb(nskb);
 }
 EXPORT_SYMBOL_GPL(nf_send_reset);
+
+MODULE_LICENSE("GPL");
index 5f5f0438d74d9b76596b1e5633189402c5925d80..20d9defc6c59c2d8754eb3a51f667ce3b25ae0d5 100644 (file)
@@ -5,6 +5,8 @@
  * it under the terms of the GNU General Public License version 2 as
  * published by the Free Software Foundation.
  */
+
+#include <linux/module.h>
 #include <net/ipv6.h>
 #include <net/ip6_route.h>
 #include <net/ip6_fib.h>
@@ -161,3 +163,5 @@ void nf_send_reset6(struct net *net, struct sk_buff *oldskb, int hook)
                ip6_local_out(nskb);
 }
 EXPORT_SYMBOL_GPL(nf_send_reset6);
+
+MODULE_LICENSE("GPL");