patch-2.3.99-pre3 linux/fs/lockd/clntproc.c
Next file: linux/fs/lockd/mon.c
Previous file: linux/fs/hpfs/file.c
Back to the patch index
Back to the overall index
- Lines: 22
- Date:
Mon Mar 20 08:14:04 2000
- Orig file:
v2.3.99-pre2/linux/fs/lockd/clntproc.c
- Orig date:
Sun Feb 20 21:12:39 2000
diff -u --recursive --new-file v2.3.99-pre2/linux/fs/lockd/clntproc.c linux/fs/lockd/clntproc.c
@@ -296,6 +296,7 @@
struct rpc_clnt *clnt;
struct nlm_args *argp = &req->a_args;
struct nlm_res *resp = &req->a_res;
+ struct rpc_message msg;
int status;
dprintk("lockd: call procedure %s on %s (async)\n",
@@ -306,8 +307,11 @@
return -ENOLCK;
/* bootstrap and kick off the async RPC call */
- status = rpc_do_call(clnt, proc, argp, resp, RPC_TASK_ASYNC,
- callback, req);
+ msg.rpc_proc = proc;
+ msg.rpc_argp = argp;
+ msg.rpc_resp =resp;
+ msg.rpc_cred = NULL;
+ status = rpc_call_async(clnt, &msg, RPC_TASK_ASYNC, callback, req);
/* If the async call is proceeding, increment host refcount */
if (status >= 0 && (req->a_flags & RPC_TASK_ASYNC))
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)