Lines Matching refs:statp
1169 svc_get_autherr(struct svc_rqst *rqstp, __be32 *statp) in svc_get_autherr() argument
1172 return *statp; in svc_get_autherr()
1177 svc_generic_dispatch(struct svc_rqst *rqstp, __be32 *statp) in svc_generic_dispatch() argument
1189 *statp = rpc_garbage_args; in svc_generic_dispatch()
1193 *statp = procp->pc_func(rqstp); in svc_generic_dispatch()
1195 if (*statp == rpc_drop_reply || in svc_generic_dispatch()
1202 if (*statp != rpc_success) in svc_generic_dispatch()
1210 *statp = rpc_system_err; in svc_generic_dispatch()
1278 __be32 *statp; in svc_process_common() local
1374 statp = resv->iov_base +resv->iov_len; in svc_process_common()
1385 if (!svc_generic_dispatch(rqstp, statp)) in svc_process_common()
1387 if (*statp == rpc_garbage_args) in svc_process_common()
1389 auth_stat = svc_get_autherr(rqstp, statp); in svc_process_common()
1394 if (!process.dispatch(rqstp, statp)) in svc_process_common()
1399 if (*statp != rpc_success) in svc_process_common()
1400 resv->iov_len = ((void*)statp) - resv->iov_base + 4; in svc_process_common()