diff options
Diffstat (limited to 'net/tipc/socket.c')
| -rw-r--r-- | net/tipc/socket.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/socket.c b/net/tipc/socket.c index b53246fb0412..69c29050f14a 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1491,7 +1491,7 @@ static void tipc_write_space(struct sock *sk)  	rcu_read_lock();  	wq = rcu_dereference(sk->sk_wq); -	if (wq_has_sleeper(wq)) +	if (skwq_has_sleeper(wq))  		wake_up_interruptible_sync_poll(&wq->wait, POLLOUT |  						POLLWRNORM | POLLWRBAND);  	rcu_read_unlock(); @@ -1508,7 +1508,7 @@ static void tipc_data_ready(struct sock *sk)  	rcu_read_lock();  	wq = rcu_dereference(sk->sk_wq); -	if (wq_has_sleeper(wq)) +	if (skwq_has_sleeper(wq))  		wake_up_interruptible_sync_poll(&wq->wait, POLLIN |  						POLLRDNORM | POLLRDBAND);  	rcu_read_unlock();  | 
