unlink.c (9d12b216aa87f68c96f6dd8eb5d2d0ccc9989b1c) | unlink.c (17280175c587469b34757263c7cfc608f0ea2334) |
---|---|
1/* 2 * linux/fs/nfs/unlink.c 3 * 4 * nfs sillydelete handling 5 * 6 */ 7 8#include <linux/slab.h> --- 94 unchanged lines hidden (view full) --- 103 struct super_block *sb = data->dir->i_sb; 104 105 nfs_dec_sillycount(data->dir); 106 nfs_free_unlinkdata(data); 107 nfs_sb_deactive(sb); 108} 109 110#if defined(CONFIG_NFS_V4_1) | 1/* 2 * linux/fs/nfs/unlink.c 3 * 4 * nfs sillydelete handling 5 * 6 */ 7 8#include <linux/slab.h> --- 94 unchanged lines hidden (view full) --- 103 struct super_block *sb = data->dir->i_sb; 104 105 nfs_dec_sillycount(data->dir); 106 nfs_free_unlinkdata(data); 107 nfs_sb_deactive(sb); 108} 109 110#if defined(CONFIG_NFS_V4_1) |
111void nfs_unlink_prepare(struct rpc_task *task, void *calldata) | 111static void nfs_unlink_prepare(struct rpc_task *task, void *calldata) |
112{ 113 struct nfs_unlinkdata *data = calldata; 114 struct nfs_server *server = NFS_SERVER(data->dir); 115 116 if (nfs4_setup_sequence(server, &data->args.seq_args, 117 &data->res.seq_res, task)) 118 return; 119 rpc_call_start(task); --- 478 unchanged lines hidden --- | 112{ 113 struct nfs_unlinkdata *data = calldata; 114 struct nfs_server *server = NFS_SERVER(data->dir); 115 116 if (nfs4_setup_sequence(server, &data->args.seq_args, 117 &data->res.seq_res, task)) 118 return; 119 rpc_call_start(task); --- 478 unchanged lines hidden --- |