Lines Matching refs:msg
58 struct rpc_message msg = { in nfs_proc_get_root() local
67 status = rpc_call_sync(server->client, &msg, 0); in nfs_proc_get_root()
70 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0); in nfs_proc_get_root()
75 msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS]; in nfs_proc_get_root()
76 msg.rpc_resp = &fsinfo; in nfs_proc_get_root()
77 status = rpc_call_sync(server->client, &msg, 0); in nfs_proc_get_root()
80 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0); in nfs_proc_get_root()
103 struct rpc_message msg = { in nfs_proc_getattr() local
112 status = rpc_call_sync(server->client, &msg, 0); in nfs_proc_getattr()
126 struct rpc_message msg = { in nfs_proc_setattr() local
138 msg.rpc_cred = nfs_file_cred(sattr->ia_file); in nfs_proc_setattr()
140 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); in nfs_proc_setattr()
161 struct rpc_message msg = { in nfs_proc_lookup() local
170 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_lookup()
184 struct rpc_message msg = { in nfs_proc_readlink() local
191 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); in nfs_proc_readlink()
233 struct rpc_message msg = { in nfs_proc_create() local
242 msg.rpc_argp = &data->arg; in nfs_proc_create()
243 msg.rpc_resp = &data->res; in nfs_proc_create()
244 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_create()
262 struct rpc_message msg = { in nfs_proc_mknod() local
282 msg.rpc_argp = &data->arg; in nfs_proc_mknod()
283 msg.rpc_resp = &data->res; in nfs_proc_mknod()
285 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_mknod()
291 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_mknod()
308 struct rpc_message msg = { in nfs_proc_remove() local
315 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_remove()
323 nfs_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) in nfs_proc_unlink_setup() argument
325 msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE]; in nfs_proc_unlink_setup()
340 nfs_proc_rename_setup(struct rpc_message *msg, struct inode *dir) in nfs_proc_rename_setup() argument
342 msg->rpc_proc = &nfs_procedures[NFSPROC_RENAME]; in nfs_proc_rename_setup()
368 struct rpc_message msg = { in nfs_proc_link() local
375 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0); in nfs_proc_link()
396 struct rpc_message msg = { in nfs_proc_symlink() local
413 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_symlink()
436 struct rpc_message msg = { in nfs_proc_mkdir() local
445 msg.rpc_argp = &data->arg; in nfs_proc_mkdir()
446 msg.rpc_resp = &data->res; in nfs_proc_mkdir()
448 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_mkdir()
466 struct rpc_message msg = { in nfs_proc_rmdir() local
473 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_rmdir()
497 struct rpc_message msg = { in nfs_proc_readdir() local
505 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); in nfs_proc_readdir()
518 struct rpc_message msg = { in nfs_proc_statfs() local
527 status = rpc_call_sync(server->client, &msg, 0); in nfs_proc_statfs()
546 struct rpc_message msg = { in nfs_proc_fsinfo() local
555 status = rpc_call_sync(server->client, &msg, 0); in nfs_proc_fsinfo()
598 struct rpc_message *msg) in nfs_proc_read_setup() argument
600 msg->rpc_proc = &nfs_procedures[NFSPROC_READ]; in nfs_proc_read_setup()
618 struct rpc_message *msg) in nfs_proc_write_setup() argument
622 msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE]; in nfs_proc_write_setup()
631 nfs_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg) in nfs_proc_commit_setup() argument