netlink: Remove nonblock parameter from netlink_attachskb
Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
40aecb1b13
commit
9457afee85
@ -759,7 +759,7 @@ struct sock *netlink_getsockbyfilp(struct file *filp)
|
||||
* 0: continue
|
||||
* 1: repeat lookup - reference dropped while waiting for socket memory.
|
||||
*/
|
||||
int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock,
|
||||
int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
|
||||
long *timeo, struct sock *ssk)
|
||||
{
|
||||
struct netlink_sock *nlk;
|
||||
@ -892,7 +892,7 @@ retry:
|
||||
return err;
|
||||
}
|
||||
|
||||
err = netlink_attachskb(sk, skb, nonblock, &timeo, ssk);
|
||||
err = netlink_attachskb(sk, skb, &timeo, ssk);
|
||||
if (err == 1)
|
||||
goto retry;
|
||||
if (err)
|
||||
|
Reference in New Issue
Block a user