Lines Matching defs:call
71 /* Obtain file pointer. Not used by FREE_ALL call. */
310 void nlmsvc_release_call(struct nlm_rqst *call)
312 if (!refcount_dec_and_test(&call->a_count))
314 nlmsvc_release_host(call->a_host);
315 kfree(call);
338 struct nlm_rqst *call;
347 call = nlm_alloc_call(host);
349 if (call == NULL)
352 stat = func(rqstp, &call->a_res);
354 nlmsvc_release_call(call);
358 call->a_flags = RPC_TASK_ASYNC;
359 if (nlm_async_reply(call, proc, &nlmsvc_callback_ops) < 0)