Skip to content

Commit

Permalink
[IPV4]: Multipath modules need a license to prevent kernel tainting.
Browse files Browse the repository at this point in the history
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Randy Dunlap authored and David S. Miller committed Jun 13, 2005
1 parent e762648 commit 6efd845
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions net/ipv4/multipath_drr.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <linux/igmp.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/module.h>
#include <linux/mroute.h>
#include <linux/init.h>
#include <net/ip.h>
Expand Down Expand Up @@ -247,3 +248,4 @@ static void __exit drr_exit(void)

module_init(drr_init);
module_exit(drr_exit);
MODULE_LICENSE("GPL");
2 changes: 2 additions & 0 deletions net/ipv4/multipath_random.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <linux/igmp.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/module.h>
#include <linux/mroute.h>
#include <linux/init.h>
#include <net/ip.h>
Expand Down Expand Up @@ -126,3 +127,4 @@ static void __exit random_exit(void)

module_init(random_init);
module_exit(random_exit);
MODULE_LICENSE("GPL");
2 changes: 2 additions & 0 deletions net/ipv4/multipath_rr.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <linux/igmp.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/module.h>
#include <linux/mroute.h>
#include <linux/init.h>
#include <net/ip.h>
Expand Down Expand Up @@ -93,3 +94,4 @@ static void __exit rr_exit(void)

module_init(rr_init);
module_exit(rr_exit);
MODULE_LICENSE("GPL");
2 changes: 2 additions & 0 deletions net/ipv4/multipath_wrandom.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <linux/igmp.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/module.h>
#include <linux/mroute.h>
#include <linux/init.h>
#include <net/ip.h>
Expand Down Expand Up @@ -342,3 +343,4 @@ static void __exit wrandom_exit(void)

module_init(wrandom_init);
module_exit(wrandom_exit);
MODULE_LICENSE("GPL");

0 comments on commit 6efd845

Please sign in to comment.