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 | |
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')
-rw-r--r-- | net/sunrpc/auth_gss/gss_spkm3_token.c | 2 | ||||
-rw-r--r-- | net/sunrpc/bc_svc.c | 2 | ||||
-rw-r--r-- | net/sunrpc/clnt.c | 1 | ||||
-rw-r--r-- | net/sunrpc/svcsock.c | 25 | ||||
-rw-r--r-- | net/sunrpc/xprt.c | 2 | ||||
-rw-r--r-- | net/sunrpc/xprtsock.c | 4 |
6 files changed, 15 insertions, 21 deletions
diff --git a/net/sunrpc/auth_gss/gss_spkm3_token.c b/net/sunrpc/auth_gss/gss_spkm3_token.c index 3308157436d2..a99825d7caa0 100644 --- a/net/sunrpc/auth_gss/gss_spkm3_token.c +++ b/net/sunrpc/auth_gss/gss_spkm3_token.c | |||
@@ -223,7 +223,7 @@ spkm3_verify_mic_token(unsigned char **tokp, int *mic_hdrlen, unsigned char **ck | |||
223 | 223 | ||
224 | /* only support SPKM_MIC_TOK */ | 224 | /* only support SPKM_MIC_TOK */ |
225 | if((ptr[6] != 0x01) || (ptr[7] != 0x01)) { | 225 | if((ptr[6] != 0x01) || (ptr[7] != 0x01)) { |
226 | dprintk("RPC: ERROR unsupported SPKM3 token \n"); | 226 | dprintk("RPC: ERROR unsupported SPKM3 token\n"); |
227 | goto out; | 227 | goto out; |
228 | } | 228 | } |
229 | 229 | ||
diff --git a/net/sunrpc/bc_svc.c b/net/sunrpc/bc_svc.c index f0c05d3311c1..7dcfe0cc3500 100644 --- a/net/sunrpc/bc_svc.c +++ b/net/sunrpc/bc_svc.c | |||
@@ -60,7 +60,7 @@ int bc_send(struct rpc_rqst *req) | |||
60 | rpc_put_task(task); | 60 | rpc_put_task(task); |
61 | } | 61 | } |
62 | return ret; | 62 | return ret; |
63 | dprintk("RPC: bc_send ret= %d \n", ret); | 63 | dprintk("RPC: bc_send ret= %d\n", ret); |
64 | } | 64 | } |
65 | 65 | ||
66 | #endif /* CONFIG_NFS_V4_1 */ | 66 | #endif /* CONFIG_NFS_V4_1 */ |
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index 8c7b5433022a..756fc324db9e 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -1507,7 +1507,6 @@ call_refreshresult(struct rpc_task *task) | |||
1507 | task->tk_action = call_refresh; | 1507 | task->tk_action = call_refresh; |
1508 | if (status != -ETIMEDOUT) | 1508 | if (status != -ETIMEDOUT) |
1509 | rpc_delay(task, 3*HZ); | 1509 | rpc_delay(task, 3*HZ); |
1510 | return; | ||
1511 | } | 1510 | } |
1512 | 1511 | ||
1513 | static __be32 * | 1512 | static __be32 * |
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 | /* |
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c index 65fe2e4e7cbf..3fc325399ee4 100644 --- a/net/sunrpc/xprt.c +++ b/net/sunrpc/xprt.c | |||
@@ -984,7 +984,7 @@ void xprt_reserve(struct rpc_task *task) | |||
984 | 984 | ||
985 | static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt) | 985 | static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt) |
986 | { | 986 | { |
987 | return xprt->xid++; | 987 | return (__force __be32)xprt->xid++; |
988 | } | 988 | } |
989 | 989 | ||
990 | static inline void xprt_init_xid(struct rpc_xprt *xprt) | 990 | static inline void xprt_init_xid(struct rpc_xprt *xprt) |
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c index 02fc7f04dd17..b7cd8cccbe72 100644 --- a/net/sunrpc/xprtsock.c +++ b/net/sunrpc/xprtsock.c | |||
@@ -1035,8 +1035,6 @@ static inline void xs_tcp_read_common(struct rpc_xprt *xprt, | |||
1035 | if (transport->tcp_flags & TCP_RCV_LAST_FRAG) | 1035 | if (transport->tcp_flags & TCP_RCV_LAST_FRAG) |
1036 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; | 1036 | transport->tcp_flags &= ~TCP_RCV_COPY_DATA; |
1037 | } | 1037 | } |
1038 | |||
1039 | return; | ||
1040 | } | 1038 | } |
1041 | 1039 | ||
1042 | /* | 1040 | /* |
@@ -2182,7 +2180,6 @@ static int bc_send_request(struct rpc_task *task) | |||
2182 | 2180 | ||
2183 | static void bc_close(struct rpc_xprt *xprt) | 2181 | static void bc_close(struct rpc_xprt *xprt) |
2184 | { | 2182 | { |
2185 | return; | ||
2186 | } | 2183 | } |
2187 | 2184 | ||
2188 | /* | 2185 | /* |
@@ -2192,7 +2189,6 @@ static void bc_close(struct rpc_xprt *xprt) | |||
2192 | 2189 | ||
2193 | static void bc_destroy(struct rpc_xprt *xprt) | 2190 | static void bc_destroy(struct rpc_xprt *xprt) |
2194 | { | 2191 | { |
2195 | return; | ||
2196 | } | 2192 | } |
2197 | 2193 | ||
2198 | static struct rpc_xprt_ops xs_udp_ops = { | 2194 | static struct rpc_xprt_ops xs_udp_ops = { |