patch-2.4.6 linux/net/econet/af_econet.c
Next file: linux/net/ipv4/af_inet.c
Previous file: linux/net/decnet/af_decnet.c
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
Fri Jun 29 19:38:26 2001
- Orig file:
v2.4.5/linux/net/econet/af_econet.c
- Orig date:
Thu Apr 19 08:38:50 2001
diff -u --recursive --new-file v2.4.5/linux/net/econet/af_econet.c linux/net/econet/af_econet.c
@@ -68,7 +68,7 @@
unsigned long handle;
};
-static unsigned long aun_seq = 0;
+static unsigned long aun_seq;
/* Queue of packets waiting to be transmitted. */
static struct sk_buff_head aun_queue;
@@ -172,9 +172,8 @@
* Check legality
*/
- if (addr_len < sizeof(struct sockaddr_ec))
- return -EINVAL;
- if (sec->sec_family != AF_ECONET)
+ if (addr_len < sizeof(struct sockaddr_ec) ||
+ sec->sec_family != AF_ECONET)
return -EINVAL;
sk->protinfo.af_econet->cb = sec->cb;
@@ -485,7 +484,6 @@
static int econet_release(struct socket *sock)
{
- struct sk_buff *skb;
struct sock *sk = sock->sk;
if (!sk)
@@ -505,8 +503,7 @@
/* Purge queues */
- while ((skb=skb_dequeue(&sk->receive_queue))!=NULL)
- kfree_skb(skb);
+ skb_queue_purge(&sk->receive_queue);
if (atomic_read(&sk->rmem_alloc) || atomic_read(&sk->wmem_alloc)) {
sk->timer.data=(unsigned long)sk;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)