diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
commit | 27cfca1ec98e91261b1a5355d10a8996464b63af (patch) | |
tree | 8e895a53e372fa682b4c0a585b9377d67ed70d0e /net/rose/rose_subr.c | |
parent | 6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff) |
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too
o Upgrade to 2.1.89.
Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'net/rose/rose_subr.c')
-rw-r--r-- | net/rose/rose_subr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/rose/rose_subr.c b/net/rose/rose_subr.c index e7709726c..d80212261 100644 --- a/net/rose/rose_subr.c +++ b/net/rose/rose_subr.c @@ -47,10 +47,10 @@ void rose_clear_queues(struct sock *sk) struct sk_buff *skb; while ((skb = skb_dequeue(&sk->write_queue)) != NULL) - kfree_skb(skb, FREE_WRITE); + kfree_skb(skb); while ((skb = skb_dequeue(&sk->protinfo.rose->ack_queue)) != NULL) - kfree_skb(skb, FREE_WRITE); + kfree_skb(skb); } /* @@ -68,7 +68,7 @@ void rose_frames_acked(struct sock *sk, unsigned short nr) if (sk->protinfo.rose->va != nr) { while (skb_peek(&sk->protinfo.rose->ack_queue) != NULL && sk->protinfo.rose->va != nr) { skb = skb_dequeue(&sk->protinfo.rose->ack_queue); - kfree_skb(skb, FREE_WRITE); + kfree_skb(skb); sk->protinfo.rose->va = (sk->protinfo.rose->va + 1) % ROSE_MODULUS; } } @@ -206,7 +206,7 @@ void rose_write_internal(struct sock *sk, int frametype) default: printk(KERN_ERR "ROSE: rose_write_internal - invalid frametype %02X\n", frametype); - kfree_skb(skb, FREE_WRITE); + kfree_skb(skb); return; } |