diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/802/p8023.c | 2 | ||||
-rw-r--r-- | net/atm/signaling.c | 3 | ||||
-rw-r--r-- | net/ipv4/icmp.c | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/net/802/p8023.c b/net/802/p8023.c index d23e906456eb..53cf05709283 100644 --- a/net/802/p8023.c +++ b/net/802/p8023.c | |||
@@ -59,3 +59,5 @@ void destroy_8023_client(struct datalink_proto *dl) | |||
59 | 59 | ||
60 | EXPORT_SYMBOL(destroy_8023_client); | 60 | EXPORT_SYMBOL(destroy_8023_client); |
61 | EXPORT_SYMBOL(make_8023_client); | 61 | EXPORT_SYMBOL(make_8023_client); |
62 | |||
63 | MODULE_LICENSE("GPL"); | ||
diff --git a/net/atm/signaling.c b/net/atm/signaling.c index e7211a7f382c..93ad59a28ef5 100644 --- a/net/atm/signaling.c +++ b/net/atm/signaling.c | |||
@@ -56,7 +56,8 @@ static void sigd_put_skb(struct sk_buff *skb) | |||
56 | remove_wait_queue(&sigd_sleep,&wait); | 56 | remove_wait_queue(&sigd_sleep,&wait); |
57 | #else | 57 | #else |
58 | if (!sigd) { | 58 | if (!sigd) { |
59 | printk(KERN_WARNING "atmsvc: no signaling demon\n"); | 59 | if (net_ratelimit()) |
60 | printk(KERN_WARNING "atmsvc: no signaling demon\n"); | ||
60 | kfree_skb(skb); | 61 | kfree_skb(skb); |
61 | return; | 62 | return; |
62 | } | 63 | } |
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c index 4d1c40972a4b..e7bbff4340bb 100644 --- a/net/ipv4/icmp.c +++ b/net/ipv4/icmp.c | |||
@@ -192,7 +192,7 @@ int sysctl_icmp_echo_ignore_all; | |||
192 | int sysctl_icmp_echo_ignore_broadcasts = 1; | 192 | int sysctl_icmp_echo_ignore_broadcasts = 1; |
193 | 193 | ||
194 | /* Control parameter - ignore bogus broadcast responses? */ | 194 | /* Control parameter - ignore bogus broadcast responses? */ |
195 | int sysctl_icmp_ignore_bogus_error_responses; | 195 | int sysctl_icmp_ignore_bogus_error_responses = 1; |
196 | 196 | ||
197 | /* | 197 | /* |
198 | * Configurable global rate limit. | 198 | * Configurable global rate limit. |