aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/9p/client.c')
-rw-r--r--net/9p/client.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/9p/client.c b/net/9p/client.c
index e50ec802937a..30c4a1b224fb 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -1162,6 +1162,31 @@ int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1162} 1162}
1163EXPORT_SYMBOL(p9_client_link); 1163EXPORT_SYMBOL(p9_client_link);
1164 1164
1165int p9_client_fsync(struct p9_fid *fid)
1166{
1167 int err;
1168 struct p9_client *clnt;
1169 struct p9_req_t *req;
1170
1171 P9_DPRINTK(P9_DEBUG_9P, ">>> TFSYNC fid %d\n", fid->fid);
1172 err = 0;
1173 clnt = fid->clnt;
1174
1175 req = p9_client_rpc(clnt, P9_TFSYNC, "d", fid->fid);
1176 if (IS_ERR(req)) {
1177 err = PTR_ERR(req);
1178 goto error;
1179 }
1180
1181 P9_DPRINTK(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1182
1183 p9_free_req(clnt, req);
1184
1185error:
1186 return err;
1187}
1188EXPORT_SYMBOL(p9_client_fsync);
1189
1165int p9_client_clunk(struct p9_fid *fid) 1190int p9_client_clunk(struct p9_fid *fid)
1166{ 1191{
1167 int err; 1192 int err;