diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-11-27 21:50:31 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-02-04 01:34:14 -0500 |
commit | 2e90b1c45e34240eeeacab0b37d5f8f739462bdc (patch) | |
tree | b9fa43e25f1b624fb8d78d331964c6b9d2eaa013 /net/rxrpc/ar-output.c | |
parent | af2b040e470b470bfc881981db3c796072853eae (diff) |
rxrpc: make the users of rxrpc_kernel_send_data() set kvec-backed msg_iter properly
Use iov_iter_kvec() there, get rid of set_fs() games - now that
rxrpc_send_data() uses iov_iter primitives, it'll handle ITER_KVEC just
fine.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/rxrpc/ar-output.c')
-rw-r--r-- | net/rxrpc/ar-output.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/rxrpc/ar-output.c b/net/rxrpc/ar-output.c index 963a5b91f3e8..8331c95e1522 100644 --- a/net/rxrpc/ar-output.c +++ b/net/rxrpc/ar-output.c | |||
@@ -232,10 +232,7 @@ int rxrpc_kernel_send_data(struct rxrpc_call *call, struct msghdr *msg, | |||
232 | call->state != RXRPC_CALL_SERVER_SEND_REPLY) { | 232 | call->state != RXRPC_CALL_SERVER_SEND_REPLY) { |
233 | ret = -EPROTO; /* request phase complete for this client call */ | 233 | ret = -EPROTO; /* request phase complete for this client call */ |
234 | } else { | 234 | } else { |
235 | mm_segment_t oldfs = get_fs(); | ||
236 | set_fs(KERNEL_DS); | ||
237 | ret = rxrpc_send_data(NULL, call->socket, call, msg, len); | 235 | ret = rxrpc_send_data(NULL, call->socket, call, msg, len); |
238 | set_fs(oldfs); | ||
239 | } | 236 | } |
240 | 237 | ||
241 | release_sock(&call->socket->sk); | 238 | release_sock(&call->socket->sk); |