Lines Matching defs:call
70 /* Obtain file pointer. Not used by FREE_ALL call. */
306 void nlmsvc_release_call(struct nlm_rqst *call)
308 if (!refcount_dec_and_test(&call->a_count))
310 nlmsvc_release_host(call->a_host);
311 kfree(call);
334 struct nlm_rqst *call;
343 call = nlm_alloc_call(host);
345 if (call == NULL)
348 stat = func(rqstp, &call->a_res);
350 nlmsvc_release_call(call);
354 call->a_flags = RPC_TASK_ASYNC;
355 if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0)