Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/unlink.c |
| 3 | * |
| 4 | * nfs sillydelete handling |
| 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/string.h> |
| 10 | #include <linux/dcache.h> |
| 11 | #include <linux/sunrpc/sched.h> |
| 12 | #include <linux/sunrpc/clnt.h> |
| 13 | #include <linux/nfs_fs.h> |
Linus Torvalds | b35e704 | 2007-10-19 19:59:18 -0700 | [diff] [blame] | 14 | #include <linux/sched.h> |
| 15 | #include <linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 17 | #include "internal.h" |
Andy Adamson | 472cfbd | 2009-04-01 09:22:24 -0400 | [diff] [blame] | 18 | #include "nfs4_fs.h" |
Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | struct nfs_unlinkdata { |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 21 | struct hlist_node list; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 22 | struct nfs_removeargs args; |
| 23 | struct nfs_removeres res; |
| 24 | struct inode *dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct rpc_cred *cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | }; |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | /** |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 29 | * nfs_free_unlinkdata - release data from a sillydelete operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | * @data: pointer to unlink structure. |
| 31 | */ |
| 32 | static void |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 33 | nfs_free_unlinkdata(struct nfs_unlinkdata *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 35 | iput(data->dir); |
| 36 | put_rpccred(data->cred); |
| 37 | kfree(data->args.name.name); |
| 38 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | #define NAME_ALLOC_LEN(len) ((len+16) & ~15) |
| 42 | /** |
| 43 | * nfs_copy_dname - copy dentry name to data structure |
| 44 | * @dentry: pointer to dentry |
| 45 | * @data: nfs_unlinkdata |
| 46 | */ |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 47 | static int nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | { |
| 49 | char *str; |
| 50 | int len = dentry->d_name.len; |
| 51 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 52 | str = kmemdup(dentry->d_name.name, NAME_ALLOC_LEN(len), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | if (!str) |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 54 | return -ENOMEM; |
| 55 | data->args.name.len = len; |
| 56 | data->args.name.name = str; |
| 57 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 60 | static void nfs_free_dname(struct nfs_unlinkdata *data) |
| 61 | { |
| 62 | kfree(data->args.name.name); |
| 63 | data->args.name.name = NULL; |
| 64 | data->args.name.len = 0; |
| 65 | } |
| 66 | |
| 67 | static void nfs_dec_sillycount(struct inode *dir) |
| 68 | { |
| 69 | struct nfs_inode *nfsi = NFS_I(dir); |
| 70 | if (atomic_dec_return(&nfsi->silly_count) == 1) |
| 71 | wake_up(&nfsi->waitqueue); |
| 72 | } |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | * nfs_async_unlink_done - Sillydelete post-processing |
| 76 | * @task: rpc_task of the sillydelete |
| 77 | * |
| 78 | * Do the directory attribute update. |
| 79 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 80 | static void nfs_async_unlink_done(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 82 | struct nfs_unlinkdata *data = calldata; |
| 83 | struct inode *dir = data->dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 85 | if (!NFS_PROTO(dir)->unlink_done(task, dir)) |
Trond Myklebust | 0110ee1 | 2009-12-07 09:00:24 -0500 | [diff] [blame] | 86 | nfs_restart_rpc(task, NFS_SERVER(dir)->nfs_client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | /** |
| 90 | * nfs_async_unlink_release - Release the sillydelete data. |
| 91 | * @task: rpc_task of the sillydelete |
| 92 | * |
| 93 | * We need to call nfs_put_unlinkdata as a 'tk_release' task since the |
| 94 | * rpc_task would be freed too. |
| 95 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 96 | static void nfs_async_unlink_release(void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 98 | struct nfs_unlinkdata *data = calldata; |
Trond Myklebust | 744d18d | 2008-07-27 18:03:19 -0400 | [diff] [blame] | 99 | struct super_block *sb = data->dir->i_sb; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 100 | |
| 101 | nfs_dec_sillycount(data->dir); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 102 | nfs_free_unlinkdata(data); |
Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 103 | nfs_sb_deactive(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Andy Adamson | 472cfbd | 2009-04-01 09:22:24 -0400 | [diff] [blame] | 106 | #if defined(CONFIG_NFS_V4_1) |
| 107 | void nfs_unlink_prepare(struct rpc_task *task, void *calldata) |
| 108 | { |
| 109 | struct nfs_unlinkdata *data = calldata; |
| 110 | struct nfs_server *server = NFS_SERVER(data->dir); |
| 111 | |
| 112 | if (nfs4_setup_sequence(server->nfs_client, &data->args.seq_args, |
| 113 | &data->res.seq_res, 1, task)) |
| 114 | return; |
| 115 | rpc_call_start(task); |
| 116 | } |
| 117 | #endif /* CONFIG_NFS_V4_1 */ |
| 118 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 119 | static const struct rpc_call_ops nfs_unlink_ops = { |
| 120 | .rpc_call_done = nfs_async_unlink_done, |
| 121 | .rpc_release = nfs_async_unlink_release, |
Andy Adamson | 472cfbd | 2009-04-01 09:22:24 -0400 | [diff] [blame] | 122 | #if defined(CONFIG_NFS_V4_1) |
| 123 | .rpc_call_prepare = nfs_unlink_prepare, |
| 124 | #endif /* CONFIG_NFS_V4_1 */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 125 | }; |
| 126 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 127 | static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct nfs_unlinkdata *data) |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 128 | { |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 129 | struct rpc_message msg = { |
| 130 | .rpc_argp = &data->args, |
| 131 | .rpc_resp = &data->res, |
| 132 | .rpc_cred = data->cred, |
| 133 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 134 | struct rpc_task_setup task_setup_data = { |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 135 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 136 | .callback_ops = &nfs_unlink_ops, |
| 137 | .callback_data = data, |
Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 138 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 139 | .flags = RPC_TASK_ASYNC, |
| 140 | }; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 141 | struct rpc_task *task; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 142 | struct dentry *alias; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 143 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 144 | alias = d_lookup(parent, &data->args.name); |
| 145 | if (alias != NULL) { |
| 146 | int ret = 0; |
Trond Myklebust | 609005c | 2008-01-28 19:42:59 -0500 | [diff] [blame] | 147 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 148 | /* |
| 149 | * Hey, we raced with lookup... See if we need to transfer |
| 150 | * the sillyrename information to the aliased dentry. |
| 151 | */ |
| 152 | nfs_free_dname(data); |
| 153 | spin_lock(&alias->d_lock); |
Trond Myklebust | 609005c | 2008-01-28 19:42:59 -0500 | [diff] [blame] | 154 | if (alias->d_inode != NULL && |
| 155 | !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 156 | alias->d_fsdata = data; |
Trond Myklebust | fccca7f | 2008-01-26 17:37:47 -0500 | [diff] [blame] | 157 | alias->d_flags |= DCACHE_NFSFS_RENAMED; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 158 | ret = 1; |
| 159 | } |
| 160 | spin_unlock(&alias->d_lock); |
| 161 | nfs_dec_sillycount(dir); |
| 162 | dput(alias); |
| 163 | return ret; |
| 164 | } |
| 165 | data->dir = igrab(dir); |
| 166 | if (!data->dir) { |
| 167 | nfs_dec_sillycount(dir); |
| 168 | return 0; |
| 169 | } |
Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 170 | nfs_sb_active(dir->i_sb); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 171 | data->args.fh = NFS_FH(dir); |
| 172 | nfs_fattr_init(&data->res.dir_attr); |
| 173 | |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 174 | NFS_PROTO(dir)->unlink_setup(&msg, dir); |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 175 | |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 176 | task_setup_data.rpc_client = NFS_CLIENT(dir); |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 177 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 178 | if (!IS_ERR(task)) |
| 179 | rpc_put_task(task); |
| 180 | return 1; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static int nfs_call_unlink(struct dentry *dentry, struct nfs_unlinkdata *data) |
| 184 | { |
| 185 | struct dentry *parent; |
| 186 | struct inode *dir; |
| 187 | int ret = 0; |
| 188 | |
| 189 | |
| 190 | parent = dget_parent(dentry); |
| 191 | if (parent == NULL) |
| 192 | goto out_free; |
| 193 | dir = parent->d_inode; |
Trond Myklebust | 55b70a0 | 2007-10-21 12:02:22 -0400 | [diff] [blame] | 194 | if (nfs_copy_dname(dentry, data) != 0) |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 195 | goto out_dput; |
| 196 | /* Non-exclusive lock protects against concurrent lookup() calls */ |
| 197 | spin_lock(&dir->i_lock); |
| 198 | if (atomic_inc_not_zero(&NFS_I(dir)->silly_count) == 0) { |
| 199 | /* Deferred delete */ |
| 200 | hlist_add_head(&data->list, &NFS_I(dir)->silly_list); |
| 201 | spin_unlock(&dir->i_lock); |
| 202 | ret = 1; |
| 203 | goto out_dput; |
| 204 | } |
| 205 | spin_unlock(&dir->i_lock); |
| 206 | ret = nfs_do_call_unlink(parent, dir, data); |
| 207 | out_dput: |
| 208 | dput(parent); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 209 | out_free: |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 210 | return ret; |
| 211 | } |
| 212 | |
| 213 | void nfs_block_sillyrename(struct dentry *dentry) |
| 214 | { |
| 215 | struct nfs_inode *nfsi = NFS_I(dentry->d_inode); |
| 216 | |
| 217 | wait_event(nfsi->waitqueue, atomic_cmpxchg(&nfsi->silly_count, 1, 0) == 1); |
| 218 | } |
| 219 | |
| 220 | void nfs_unblock_sillyrename(struct dentry *dentry) |
| 221 | { |
| 222 | struct inode *dir = dentry->d_inode; |
| 223 | struct nfs_inode *nfsi = NFS_I(dir); |
| 224 | struct nfs_unlinkdata *data; |
| 225 | |
| 226 | atomic_inc(&nfsi->silly_count); |
| 227 | spin_lock(&dir->i_lock); |
| 228 | while (!hlist_empty(&nfsi->silly_list)) { |
| 229 | if (!atomic_inc_not_zero(&nfsi->silly_count)) |
| 230 | break; |
| 231 | data = hlist_entry(nfsi->silly_list.first, struct nfs_unlinkdata, list); |
| 232 | hlist_del(&data->list); |
| 233 | spin_unlock(&dir->i_lock); |
| 234 | if (nfs_do_call_unlink(dentry, dir, data) == 0) |
| 235 | nfs_free_unlinkdata(data); |
| 236 | spin_lock(&dir->i_lock); |
| 237 | } |
| 238 | spin_unlock(&dir->i_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 239 | } |
| 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /** |
| 242 | * nfs_async_unlink - asynchronous unlinking of a file |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 243 | * @dir: parent directory of dentry |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | * @dentry: dentry to unlink |
| 245 | */ |
| 246 | int |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 247 | nfs_async_unlink(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 249 | struct nfs_unlinkdata *data; |
| 250 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
Eric Sesterhenn | bd64754 | 2006-03-20 13:44:10 -0500 | [diff] [blame] | 252 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 253 | if (data == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Trond Myklebust | 98a8e32 | 2008-03-12 12:25:28 -0400 | [diff] [blame] | 256 | data->cred = rpc_lookup_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | if (IS_ERR(data->cred)) { |
| 258 | status = PTR_ERR(data->cred); |
| 259 | goto out_free; |
| 260 | } |
Andy Adamson | 5f7dbd5 | 2009-04-01 09:22:05 -0400 | [diff] [blame] | 261 | data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 263 | status = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | spin_lock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 265 | if (dentry->d_flags & DCACHE_NFSFS_RENAMED) |
| 266 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | dentry->d_flags |= DCACHE_NFSFS_RENAMED; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 268 | dentry->d_fsdata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 270 | return 0; |
| 271 | out_unlock: |
| 272 | spin_unlock(&dentry->d_lock); |
| 273 | put_rpccred(data->cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | out_free: |
| 275 | kfree(data); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 276 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | return status; |
| 278 | } |
| 279 | |
| 280 | /** |
| 281 | * nfs_complete_unlink - Initialize completion of the sillydelete |
| 282 | * @dentry: dentry to delete |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 283 | * @inode: inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | * |
| 285 | * Since we're most likely to be called by dentry_iput(), we |
| 286 | * only use the dentry to find the sillydelete. We then copy the name |
| 287 | * into the qstr. |
| 288 | */ |
| 289 | void |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 290 | nfs_complete_unlink(struct dentry *dentry, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 292 | struct nfs_unlinkdata *data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | spin_lock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 295 | if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { |
| 296 | dentry->d_flags &= ~DCACHE_NFSFS_RENAMED; |
| 297 | data = dentry->d_fsdata; |
| 298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 300 | |
| 301 | if (data != NULL && (NFS_STALE(inode) || !nfs_call_unlink(dentry, data))) |
| 302 | nfs_free_unlinkdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |