diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-21 00:04:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-21 00:04:44 -0400 |
commit | f8965467f366fd18f01feafb5db10512d7b4422c (patch) | |
tree | 3706a9cd779859271ca61b85c63a1bc3f82d626e /net/sunrpc/svcsock.c | |
parent | a26272e5200765691e67d6780e52b32498fdb659 (diff) | |
parent | 2ec8c6bb5d8f3a62a79f463525054bae1e3d4487 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6: (1674 commits)
qlcnic: adding co maintainer
ixgbe: add support for active DA cables
ixgbe: dcb, do not tag tc_prio_control frames
ixgbe: fix ixgbe_tx_is_paused logic
ixgbe: always enable vlan strip/insert when DCB is enabled
ixgbe: remove some redundant code in setting FCoE FIP filter
ixgbe: fix wrong offset to fc_frame_header in ixgbe_fcoe_ddp
ixgbe: fix header len when unsplit packet overflows to data buffer
ipv6: Never schedule DAD timer on dead address
ipv6: Use POSTDAD state
ipv6: Use state_lock to protect ifa state
ipv6: Replace inet6_ifaddr->dead with state
cxgb4: notify upper drivers if the device is already up when they load
cxgb4: keep interrupts available when the ports are brought down
cxgb4: fix initial addition of MAC address
cnic: Return SPQ credit to bnx2x after ring setup and shutdown.
cnic: Convert cnic_local_flags to atomic ops.
can: Fix SJA1000 command register writes on SMP systems
bridge: fix build for CONFIG_SYSFS disabled
ARCNET: Limit com20020 PCI ID matches for SOHARD cards
...
Fix up various conflicts with pcmcia tree drivers/net/
{pcmcia/3c589_cs.c, wireless/orinoco/orinoco_cs.c and
wireless/orinoco/spectrum_cs.c} and feature removal
(Documentation/feature-removal-schedule.txt).
Also fix a non-content conflict due to pm_qos_requirement getting
renamed in the PM tree (now pm_qos_request) in net/mac80211/scan.c
Diffstat (limited to 'net/sunrpc/svcsock.c')
-rw-r--r-- | net/sunrpc/svcsock.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index a33892733643..7e534dd09077 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
@@ -150,7 +150,6 @@ static void svc_set_cmsg_data(struct svc_rqst *rqstp, struct cmsghdr *cmh) | |||
150 | } | 150 | } |
151 | break; | 151 | break; |
152 | } | 152 | } |
153 | return; | ||
154 | } | 153 | } |
155 | 154 | ||
156 | /* | 155 | /* |
@@ -419,8 +418,8 @@ static void svc_udp_data_ready(struct sock *sk, int count) | |||
419 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); | 418 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
420 | svc_xprt_enqueue(&svsk->sk_xprt); | 419 | svc_xprt_enqueue(&svsk->sk_xprt); |
421 | } | 420 | } |
422 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) | 421 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
423 | wake_up_interruptible(sk->sk_sleep); | 422 | wake_up_interruptible(sk_sleep(sk)); |
424 | } | 423 | } |
425 | 424 | ||
426 | /* | 425 | /* |
@@ -436,10 +435,10 @@ static void svc_write_space(struct sock *sk) | |||
436 | svc_xprt_enqueue(&svsk->sk_xprt); | 435 | svc_xprt_enqueue(&svsk->sk_xprt); |
437 | } | 436 | } |
438 | 437 | ||
439 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) { | 438 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) { |
440 | dprintk("RPC svc_write_space: someone sleeping on %p\n", | 439 | dprintk("RPC svc_write_space: someone sleeping on %p\n", |
441 | svsk); | 440 | svsk); |
442 | wake_up_interruptible(sk->sk_sleep); | 441 | wake_up_interruptible(sk_sleep(sk)); |
443 | } | 442 | } |
444 | } | 443 | } |
445 | 444 | ||
@@ -751,8 +750,8 @@ static void svc_tcp_listen_data_ready(struct sock *sk, int count_unused) | |||
751 | printk("svc: socket %p: no user data\n", sk); | 750 | printk("svc: socket %p: no user data\n", sk); |
752 | } | 751 | } |
753 | 752 | ||
754 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) | 753 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
755 | wake_up_interruptible_all(sk->sk_sleep); | 754 | wake_up_interruptible_all(sk_sleep(sk)); |
756 | } | 755 | } |
757 | 756 | ||
758 | /* | 757 | /* |
@@ -771,8 +770,8 @@ static void svc_tcp_state_change(struct sock *sk) | |||
771 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); | 770 | set_bit(XPT_CLOSE, &svsk->sk_xprt.xpt_flags); |
772 | svc_xprt_enqueue(&svsk->sk_xprt); | 771 | svc_xprt_enqueue(&svsk->sk_xprt); |
773 | } | 772 | } |
774 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) | 773 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
775 | wake_up_interruptible_all(sk->sk_sleep); | 774 | wake_up_interruptible_all(sk_sleep(sk)); |
776 | } | 775 | } |
777 | 776 | ||
778 | static void svc_tcp_data_ready(struct sock *sk, int count) | 777 | static void svc_tcp_data_ready(struct sock *sk, int count) |
@@ -785,8 +784,8 @@ static void svc_tcp_data_ready(struct sock *sk, int count) | |||
785 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); | 784 | set_bit(XPT_DATA, &svsk->sk_xprt.xpt_flags); |
786 | svc_xprt_enqueue(&svsk->sk_xprt); | 785 | svc_xprt_enqueue(&svsk->sk_xprt); |
787 | } | 786 | } |
788 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) | 787 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
789 | wake_up_interruptible(sk->sk_sleep); | 788 | wake_up_interruptible(sk_sleep(sk)); |
790 | } | 789 | } |
791 | 790 | ||
792 | /* | 791 | /* |
@@ -1481,8 +1480,8 @@ static void svc_sock_detach(struct svc_xprt *xprt) | |||
1481 | sk->sk_data_ready = svsk->sk_odata; | 1480 | sk->sk_data_ready = svsk->sk_odata; |
1482 | sk->sk_write_space = svsk->sk_owspace; | 1481 | sk->sk_write_space = svsk->sk_owspace; |
1483 | 1482 | ||
1484 | if (sk->sk_sleep && waitqueue_active(sk->sk_sleep)) | 1483 | if (sk_sleep(sk) && waitqueue_active(sk_sleep(sk))) |
1485 | wake_up_interruptible(sk->sk_sleep); | 1484 | wake_up_interruptible(sk_sleep(sk)); |
1486 | } | 1485 | } |
1487 | 1486 | ||
1488 | /* | 1487 | /* |