diff options
Diffstat (limited to 'fs/nfs/nfs3proc.c')
-rw-r--r-- | fs/nfs/nfs3proc.c | 60 |
1 files changed, 20 insertions, 40 deletions
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index 814d886b6aa4..c7ca5d70870b 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c | |||
@@ -349,62 +349,42 @@ out: | |||
349 | static int | 349 | static int |
350 | nfs3_proc_remove(struct inode *dir, struct qstr *name) | 350 | nfs3_proc_remove(struct inode *dir, struct qstr *name) |
351 | { | 351 | { |
352 | struct nfs_fattr dir_attr; | 352 | struct nfs_removeargs arg = { |
353 | struct nfs3_diropargs arg = { | 353 | .fh = NFS_FH(dir), |
354 | .fh = NFS_FH(dir), | 354 | .name.len = name->len, |
355 | .name = name->name, | 355 | .name.name = name->name, |
356 | .len = name->len | ||
357 | }; | 356 | }; |
358 | struct rpc_message msg = { | 357 | struct nfs_removeres res; |
359 | .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE], | 358 | struct rpc_message msg = { |
360 | .rpc_argp = &arg, | 359 | .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE], |
361 | .rpc_resp = &dir_attr, | 360 | .rpc_argp = &arg, |
361 | .rpc_resp = &res, | ||
362 | }; | 362 | }; |
363 | int status; | 363 | int status; |
364 | 364 | ||
365 | dprintk("NFS call remove %s\n", name->name); | 365 | dprintk("NFS call remove %s\n", name->name); |
366 | nfs_fattr_init(&dir_attr); | 366 | nfs_fattr_init(&res.dir_attr); |
367 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); | 367 | status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0); |
368 | nfs_post_op_update_inode(dir, &dir_attr); | 368 | nfs_post_op_update_inode(dir, &res.dir_attr); |
369 | dprintk("NFS reply remove: %d\n", status); | 369 | dprintk("NFS reply remove: %d\n", status); |
370 | return status; | 370 | return status; |
371 | } | 371 | } |
372 | 372 | ||
373 | static int | 373 | static void |
374 | nfs3_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir, struct qstr *name) | 374 | nfs3_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
375 | { | 375 | { |
376 | struct unlinkxdr { | ||
377 | struct nfs3_diropargs arg; | ||
378 | struct nfs_fattr res; | ||
379 | } *ptr; | ||
380 | |||
381 | ptr = kmalloc(sizeof(*ptr), GFP_KERNEL); | ||
382 | if (!ptr) | ||
383 | return -ENOMEM; | ||
384 | ptr->arg.fh = NFS_FH(dir->d_inode); | ||
385 | ptr->arg.name = name->name; | ||
386 | ptr->arg.len = name->len; | ||
387 | nfs_fattr_init(&ptr->res); | ||
388 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE]; | 376 | msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE]; |
389 | msg->rpc_argp = &ptr->arg; | ||
390 | msg->rpc_resp = &ptr->res; | ||
391 | return 0; | ||
392 | } | 377 | } |
393 | 378 | ||
394 | static int | 379 | static int |
395 | nfs3_proc_unlink_done(struct dentry *dir, struct rpc_task *task) | 380 | nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
396 | { | 381 | { |
397 | struct rpc_message *msg = &task->tk_msg; | 382 | struct nfs_removeres *res; |
398 | struct nfs_fattr *dir_attr; | 383 | if (nfs3_async_handle_jukebox(task, dir)) |
399 | 384 | return 0; | |
400 | if (nfs3_async_handle_jukebox(task, dir->d_inode)) | 385 | res = task->tk_msg.rpc_resp; |
401 | return 1; | 386 | nfs_post_op_update_inode(dir, &res->dir_attr); |
402 | if (msg->rpc_argp) { | 387 | return 1; |
403 | dir_attr = (struct nfs_fattr*)msg->rpc_resp; | ||
404 | nfs_post_op_update_inode(dir->d_inode, dir_attr); | ||
405 | kfree(msg->rpc_argp); | ||
406 | } | ||
407 | return 0; | ||
408 | } | 388 | } |
409 | 389 | ||
410 | static int | 390 | static int |