Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sunrpc: whitespace fixes

Remove trailing whitespace and blank line at EOF

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>

authored by

Stephen Hemminger and committed by
Anna Schumaker
8fdee4cc 0f90be13

+5 -15
+1 -1
net/sunrpc/auth_gss/auth_gss.c
··· 1572 1572 if (test_bit(RPCAUTH_CRED_NEGATIVE, &cred->cr_flags)) { 1573 1573 unsigned long now = jiffies; 1574 1574 unsigned long begin, expire; 1575 - struct gss_cred *gss_cred; 1575 + struct gss_cred *gss_cred; 1576 1576 1577 1577 gss_cred = container_of(cred, struct gss_cred, gc_base); 1578 1578 begin = gss_cred->gc_upcall_timestamp;
-1
net/sunrpc/auth_gss/gss_generic_token.c
··· 231 231 } 232 232 233 233 EXPORT_SYMBOL_GPL(g_verify_token_header); 234 -
-1
net/sunrpc/auth_gss/gss_krb5_crypto.c
··· 1077 1077 dprintk("%s: returning %d\n", __func__, err); 1078 1078 return err; 1079 1079 } 1080 -
-1
net/sunrpc/auth_gss/gss_krb5_keys.c
··· 324 324 err_out: 325 325 return ret; 326 326 } 327 -
-1
net/sunrpc/auth_gss/gss_krb5_seal.c
··· 229 229 return gss_get_mic_v2(ctx, text, token); 230 230 } 231 231 } 232 -
-1
net/sunrpc/auth_gss/gss_krb5_unseal.c
··· 225 225 return gss_verify_mic_v2(ctx, message_buffer, read_token); 226 226 } 227 227 } 228 -
-1
net/sunrpc/auth_gss/gss_krb5_wrap.c
··· 623 623 return gss_unwrap_kerberos_v2(kctx, offset, buf); 624 624 } 625 625 } 626 -
+1 -1
net/sunrpc/auth_gss/svcauth_gss.c
··· 1389 1389 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id); 1390 1390 1391 1391 if (sn->use_gssp_proc) { 1392 - remove_proc_entry("use-gss-proxy", sn->proc_net_rpc); 1392 + remove_proc_entry("use-gss-proxy", sn->proc_net_rpc); 1393 1393 clear_gssp_clnt(sn); 1394 1394 } 1395 1395 }
-1
net/sunrpc/backchannel_rqst.c
··· 362 362 wake_up(&bc_serv->sv_cb_waitq); 363 363 spin_unlock(&bc_serv->sv_cb_lock); 364 364 } 365 -
+1 -1
net/sunrpc/clnt.c
··· 892 892 /* 893 893 * Free an RPC client 894 894 */ 895 - static struct rpc_clnt * 895 + static struct rpc_clnt * 896 896 rpc_free_auth(struct rpc_clnt *clnt) 897 897 { 898 898 if (clnt->cl_auth == NULL)
+1 -1
net/sunrpc/rpcb_clnt.c
··· 213 213 sn->rpcb_local_clnt = clnt; 214 214 sn->rpcb_local_clnt4 = clnt4; 215 215 sn->rpcb_is_af_local = is_af_local ? 1 : 0; 216 - smp_wmb(); 216 + smp_wmb(); 217 217 sn->rpcb_users = 1; 218 218 dprintk("RPC: created new rpcb local clients (rpcb_local_clnt: " 219 219 "%p, rpcb_local_clnt4: %p) for net %x%s\n",
-1
net/sunrpc/stats.c
··· 334 334 dprintk("RPC: unregistering /proc/net/rpc\n"); 335 335 remove_proc_entry("rpc", net->proc_net); 336 336 } 337 -
-1
net/sunrpc/sunrpc.h
··· 57 57 int rpc_clients_notifier_register(void); 58 58 void rpc_clients_notifier_unregister(void); 59 59 #endif /* _NET_SUNRPC_SUNRPC_H */ 60 -
+1 -1
net/sunrpc/xprt.c
··· 880 880 __must_hold(&req->rq_xprt->recv_lock) 881 881 { 882 882 struct rpc_task *task = req->rq_task; 883 - 883 + 884 884 if (task && test_bit(RPC_TASK_MSG_RECV, &task->tk_runstate)) { 885 885 spin_unlock(&req->rq_xprt->recv_lock); 886 886 set_bit(RPC_TASK_MSG_RECV_WAIT, &task->tk_runstate);
-1
net/sunrpc/xprtsock.c
··· 3375 3375 max_slot_table_size, 0644); 3376 3376 module_param_named(udp_slot_table_entries, xprt_udp_slot_table_entries, 3377 3377 slot_table_size, 0644); 3378 -