[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080617.012250.172372648.davem@davemloft.net>
Date: Tue, 17 Jun 2008 01:22:50 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: netdev@...r.kernel.org
CC: acme@...hat.com
Subject: [PATCH]: Make LLC use sock_graft()
Applied and pushed out to net-next-2.6
llc: Use sock_graft() instead of by-hand version.
Signed-off-by: David S. Miller <davem@...emloft.net>
---
net/llc/af_llc.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c
index 97101dc..5bcc452 100644
--- a/net/llc/af_llc.c
+++ b/net/llc/af_llc.c
@@ -128,10 +128,8 @@ static int llc_ui_send_data(struct sock* sk, struct sk_buff *skb, int noblock)
static void llc_ui_sk_init(struct socket *sock, struct sock *sk)
{
+ sock_graft(sk, sock);
sk->sk_type = sock->type;
- sk->sk_sleep = &sock->wait;
- sk->sk_socket = sock;
- sock->sk = sk;
sock->ops = &llc_ui_ops;
}
--
1.5.5.1.308.g1fbb5
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists