patch-2.1.31 linux/net/ipv4/tcp_output.c
Next file: linux/net/ipv4/tcp_timer.c
Previous file: linux/net/ipv4/tcp_ipv4.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Mon Mar 31 12:52:32 1997
- Orig file:
v2.1.30/linux/net/ipv4/tcp_output.c
- Orig date:
Thu Mar 27 14:40:16 1997
diff -u --recursive --new-file v2.1.30/linux/net/ipv4/tcp_output.c linux/net/ipv4/tcp_output.c
@@ -112,7 +112,7 @@
if (size < sizeof(struct tcphdr) || size > skb->len)
{
- printk("tcp_send_skb: bad skb (skb = %p, data = %p, th = %p, len = %u)\n",
+ printk(KERN_DEBUG "tcp_send_skb: bad skb (skb = %p, data = %p, th = %p, len = %u)\n",
skb, skb->data, th, skb->len);
kfree_skb(skb, FREE_WRITE);
return 0;
@@ -130,7 +130,7 @@
*/
if(!th->syn && !th->fin)
{
- printk("tcp_send_skb: attempt to queue a bogon.\n");
+ printk(KERN_DEBUG "tcp_send_skb: attempt to queue a bogon.\n");
kfree_skb(skb,FREE_WRITE);
return 0;
}
@@ -770,7 +770,7 @@
if (buff == NULL)
{
/* This is a disaster if it occurs */
- printk("tcp_send_fin: Impossible malloc failure");
+ printk(KERN_INFO "tcp_send_fin: Impossible malloc failure");
return;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov