Commit 737c994c authored by Solar Designer's avatar Solar Designer Committed by David S. Miller

[TCP]: Missing KERN_INFO in remotely triggerable printk.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 24e5f922
......@@ -3028,7 +3028,7 @@ void tcp_parse_options(struct sk_buff *skb, struct tcp_opt *tp, int estab)
tp->snd_wscale = *(__u8 *)ptr;
if(tp->snd_wscale > 14) {
if(net_ratelimit())
printk("tcp_parse_options: Illegal window "
printk(KERN_INFO "tcp_parse_options: Illegal window "
"scaling value %d >14 received.",
tp->snd_wscale);
tp->snd_wscale = 14;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment