Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/delegation.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Trond Myklebust |
| 5 | * |
| 6 | * NFS file delegation management |
| 7 | * |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/completion.h> |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 10 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/sched.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Alexey Dobriyan | 405f557 | 2009-07-11 22:08:37 +0400 | [diff] [blame] | 14 | #include <linux/smp_lock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/spinlock.h> |
| 16 | |
| 17 | #include <linux/nfs4.h> |
| 18 | #include <linux/nfs_fs.h> |
| 19 | #include <linux/nfs_xdr.h> |
| 20 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 21 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include "delegation.h" |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 23 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 25 | static void nfs_do_free_delegation(struct nfs_delegation *delegation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 27 | if (delegation->cred) |
| 28 | put_rpccred(delegation->cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | kfree(delegation); |
| 30 | } |
| 31 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 32 | static void nfs_free_delegation_callback(struct rcu_head *head) |
| 33 | { |
| 34 | struct nfs_delegation *delegation = container_of(head, struct nfs_delegation, rcu); |
| 35 | |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 36 | nfs_do_free_delegation(delegation); |
| 37 | } |
| 38 | |
| 39 | static void nfs_free_delegation(struct nfs_delegation *delegation) |
| 40 | { |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 41 | call_rcu(&delegation->rcu, nfs_free_delegation_callback); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 42 | } |
| 43 | |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 44 | void nfs_mark_delegation_referenced(struct nfs_delegation *delegation) |
| 45 | { |
| 46 | set_bit(NFS_DELEGATION_REFERENCED, &delegation->flags); |
| 47 | } |
| 48 | |
Trond Myklebust | bd7bf9d | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 49 | int nfs_have_delegation(struct inode *inode, fmode_t flags) |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 50 | { |
| 51 | struct nfs_delegation *delegation; |
| 52 | int ret = 0; |
| 53 | |
| 54 | flags &= FMODE_READ|FMODE_WRITE; |
| 55 | rcu_read_lock(); |
| 56 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 57 | if (delegation != NULL && (delegation->type & flags) == flags) { |
| 58 | nfs_mark_delegation_referenced(delegation); |
| 59 | ret = 1; |
| 60 | } |
| 61 | rcu_read_unlock(); |
| 62 | return ret; |
| 63 | } |
| 64 | |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 65 | static int nfs_delegation_claim_locks(struct nfs_open_context *ctx, struct nfs4_state *state) |
| 66 | { |
| 67 | struct inode *inode = state->inode; |
| 68 | struct file_lock *fl; |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 69 | int status = 0; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 70 | |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 71 | if (inode->i_flock == NULL) |
| 72 | goto out; |
| 73 | |
| 74 | /* Protect inode->i_flock using the BKL */ |
| 75 | lock_kernel(); |
Harvey Harrison | 90dc7d2 | 2008-02-20 13:03:05 -0800 | [diff] [blame] | 76 | for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) { |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 77 | if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK))) |
| 78 | continue; |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 79 | if (nfs_file_open_context(fl->fl_file) != ctx) |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 80 | continue; |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 81 | unlock_kernel(); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 82 | status = nfs4_lock_delegation_recall(state, fl); |
Trond Myklebust | d512220 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 83 | if (status < 0) |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 84 | goto out; |
| 85 | lock_kernel(); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 86 | } |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 87 | unlock_kernel(); |
| 88 | out: |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 89 | return status; |
| 90 | } |
| 91 | |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 92 | static int nfs_delegation_claim_opens(struct inode *inode, const nfs4_stateid *stateid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
| 94 | struct nfs_inode *nfsi = NFS_I(inode); |
| 95 | struct nfs_open_context *ctx; |
| 96 | struct nfs4_state *state; |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 97 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | again: |
| 100 | spin_lock(&inode->i_lock); |
| 101 | list_for_each_entry(ctx, &nfsi->open_files, list) { |
| 102 | state = ctx->state; |
| 103 | if (state == NULL) |
| 104 | continue; |
| 105 | if (!test_bit(NFS_DELEGATED_STATE, &state->flags)) |
| 106 | continue; |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 107 | if (memcmp(state->stateid.data, stateid->data, sizeof(state->stateid.data)) != 0) |
| 108 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | get_nfs_open_context(ctx); |
| 110 | spin_unlock(&inode->i_lock); |
Trond Myklebust | 13437e1 | 2007-07-06 15:10:43 -0400 | [diff] [blame] | 111 | err = nfs4_open_delegation_recall(ctx, state, stateid); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 112 | if (err >= 0) |
| 113 | err = nfs_delegation_claim_locks(ctx, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | put_nfs_open_context(ctx); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 115 | if (err != 0) |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 116 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | goto again; |
| 118 | } |
| 119 | spin_unlock(&inode->i_lock); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 120 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | /* |
| 124 | * Set up a delegation on an inode |
| 125 | */ |
| 126 | void nfs_inode_reclaim_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res) |
| 127 | { |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 128 | struct nfs_delegation *delegation; |
| 129 | struct rpc_cred *oldcred = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Trond Myklebust | 8f649c3 | 2010-05-01 12:36:18 -0400 | [diff] [blame] | 131 | rcu_read_lock(); |
| 132 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
| 133 | if (delegation != NULL) { |
| 134 | spin_lock(&delegation->lock); |
| 135 | if (delegation->inode != NULL) { |
| 136 | memcpy(delegation->stateid.data, res->delegation.data, |
| 137 | sizeof(delegation->stateid.data)); |
| 138 | delegation->type = res->delegation_type; |
| 139 | delegation->maxsize = res->maxsize; |
| 140 | oldcred = delegation->cred; |
| 141 | delegation->cred = get_rpccred(cred); |
| 142 | clear_bit(NFS_DELEGATION_NEED_RECLAIM, |
| 143 | &delegation->flags); |
| 144 | NFS_I(inode)->delegation_state = delegation->type; |
| 145 | spin_unlock(&delegation->lock); |
| 146 | put_rpccred(oldcred); |
| 147 | rcu_read_unlock(); |
| 148 | } else { |
| 149 | /* We appear to have raced with a delegation return. */ |
| 150 | spin_unlock(&delegation->lock); |
| 151 | rcu_read_unlock(); |
| 152 | nfs_inode_set_delegation(inode, cred, res); |
| 153 | } |
| 154 | } else { |
| 155 | rcu_read_unlock(); |
| 156 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 159 | static int nfs_do_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync) |
| 160 | { |
| 161 | int res = 0; |
| 162 | |
| 163 | res = nfs4_proc_delegreturn(inode, delegation->cred, &delegation->stateid, issync); |
| 164 | nfs_free_delegation(delegation); |
| 165 | return res; |
| 166 | } |
| 167 | |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 168 | static struct inode *nfs_delegation_grab_inode(struct nfs_delegation *delegation) |
| 169 | { |
| 170 | struct inode *inode = NULL; |
| 171 | |
| 172 | spin_lock(&delegation->lock); |
| 173 | if (delegation->inode != NULL) |
| 174 | inode = igrab(delegation->inode); |
| 175 | spin_unlock(&delegation->lock); |
| 176 | return inode; |
| 177 | } |
| 178 | |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 179 | static struct nfs_delegation *nfs_detach_delegation_locked(struct nfs_inode *nfsi, |
| 180 | const nfs4_stateid *stateid, |
| 181 | struct nfs_client *clp) |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 182 | { |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 183 | struct nfs_delegation *delegation = |
| 184 | rcu_dereference_protected(nfsi->delegation, |
| 185 | lockdep_is_held(&clp->cl_lock)); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 186 | |
| 187 | if (delegation == NULL) |
| 188 | goto nomatch; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 189 | spin_lock(&delegation->lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 190 | if (stateid != NULL && memcmp(delegation->stateid.data, stateid->data, |
| 191 | sizeof(delegation->stateid.data)) != 0) |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 192 | goto nomatch_unlock; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 193 | list_del_rcu(&delegation->super_list); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 194 | delegation->inode = NULL; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 195 | nfsi->delegation_state = 0; |
| 196 | rcu_assign_pointer(nfsi->delegation, NULL); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 197 | spin_unlock(&delegation->lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 198 | return delegation; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 199 | nomatch_unlock: |
| 200 | spin_unlock(&delegation->lock); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 201 | nomatch: |
| 202 | return NULL; |
| 203 | } |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | /* |
| 206 | * Set up a delegation on an inode |
| 207 | */ |
| 208 | int nfs_inode_set_delegation(struct inode *inode, struct rpc_cred *cred, struct nfs_openres *res) |
| 209 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 210 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | struct nfs_inode *nfsi = NFS_I(inode); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 212 | struct nfs_delegation *delegation, *old_delegation; |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 213 | struct nfs_delegation *freeme = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | int status = 0; |
| 215 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 216 | delegation = kmalloc(sizeof(*delegation), GFP_NOFS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | if (delegation == NULL) |
| 218 | return -ENOMEM; |
| 219 | memcpy(delegation->stateid.data, res->delegation.data, |
| 220 | sizeof(delegation->stateid.data)); |
| 221 | delegation->type = res->delegation_type; |
| 222 | delegation->maxsize = res->maxsize; |
Trond Myklebust | beb2a5e | 2006-01-03 09:55:37 +0100 | [diff] [blame] | 223 | delegation->change_attr = nfsi->change_attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | delegation->cred = get_rpccred(cred); |
| 225 | delegation->inode = inode; |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 226 | delegation->flags = 1<<NFS_DELEGATION_REFERENCED; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 227 | spin_lock_init(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
| 229 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 230 | old_delegation = rcu_dereference_protected(nfsi->delegation, |
| 231 | lockdep_is_held(&clp->cl_lock)); |
| 232 | if (old_delegation != NULL) { |
| 233 | if (memcmp(&delegation->stateid, &old_delegation->stateid, |
| 234 | sizeof(old_delegation->stateid)) == 0 && |
| 235 | delegation->type == old_delegation->type) { |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 236 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | } |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 238 | /* |
| 239 | * Deal with broken servers that hand out two |
| 240 | * delegations for the same file. |
| 241 | */ |
| 242 | dfprintk(FILE, "%s: server %s handed out " |
| 243 | "a duplicate delegation!\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 244 | __func__, clp->cl_hostname); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 245 | if (delegation->type <= old_delegation->type) { |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 246 | freeme = delegation; |
| 247 | delegation = NULL; |
| 248 | goto out; |
| 249 | } |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 250 | freeme = nfs_detach_delegation_locked(nfsi, NULL, clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 252 | list_add_rcu(&delegation->super_list, &clp->cl_delegations); |
| 253 | nfsi->delegation_state = delegation->type; |
| 254 | rcu_assign_pointer(nfsi->delegation, delegation); |
| 255 | delegation = NULL; |
Trond Myklebust | 412c77c | 2007-07-03 16:10:55 -0400 | [diff] [blame] | 256 | |
| 257 | /* Ensure we revalidate the attributes and page cache! */ |
| 258 | spin_lock(&inode->i_lock); |
| 259 | nfsi->cache_validity |= NFS_INO_REVAL_FORCED; |
| 260 | spin_unlock(&inode->i_lock); |
| 261 | |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 262 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | spin_unlock(&clp->cl_lock); |
Trond Myklebust | 603c83d | 2007-10-18 19:59:20 -0400 | [diff] [blame] | 264 | if (delegation != NULL) |
| 265 | nfs_free_delegation(delegation); |
Trond Myklebust | 57bfa89 | 2008-01-25 16:38:18 -0500 | [diff] [blame] | 266 | if (freeme != NULL) |
| 267 | nfs_do_return_delegation(inode, freeme, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return status; |
| 269 | } |
| 270 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /* Sync all data to disk upon delegation return */ |
| 272 | static void nfs_msync_inode(struct inode *inode) |
| 273 | { |
| 274 | filemap_fdatawrite(inode->i_mapping); |
| 275 | nfs_wb_all(inode); |
| 276 | filemap_fdatawait(inode->i_mapping); |
| 277 | } |
| 278 | |
| 279 | /* |
| 280 | * Basic procedure for returning a delegation to the server |
| 281 | */ |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 282 | static int __nfs_inode_return_delegation(struct inode *inode, struct nfs_delegation *delegation, int issync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | struct nfs_inode *nfsi = NFS_I(inode); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 285 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
Trond Myklebust | 3f09df7 | 2009-06-17 13:23:00 -0700 | [diff] [blame] | 287 | /* |
| 288 | * Guard against new delegated open/lock/unlock calls and against |
| 289 | * state recovery |
| 290 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | down_write(&nfsi->rwsem); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 292 | err = nfs_delegation_claim_opens(inode, &delegation->stateid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | up_write(&nfsi->rwsem); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 294 | if (err) |
| 295 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 297 | err = nfs_do_return_delegation(inode, delegation, issync); |
| 298 | out: |
| 299 | return err; |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 300 | } |
| 301 | |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 302 | /* |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 303 | * Return all delegations that have been marked for return |
| 304 | */ |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 305 | int nfs_client_return_marked_delegations(struct nfs_client *clp) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 306 | { |
| 307 | struct nfs_delegation *delegation; |
| 308 | struct inode *inode; |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 309 | int err = 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 310 | |
| 311 | restart: |
| 312 | rcu_read_lock(); |
| 313 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 314 | if (!test_and_clear_bit(NFS_DELEGATION_RETURN, &delegation->flags)) |
| 315 | continue; |
| 316 | inode = nfs_delegation_grab_inode(delegation); |
| 317 | if (inode == NULL) |
| 318 | continue; |
| 319 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 320 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp); |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 321 | spin_unlock(&clp->cl_lock); |
| 322 | rcu_read_unlock(); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 323 | if (delegation != NULL) { |
| 324 | filemap_flush(inode->i_mapping); |
| 325 | err = __nfs_inode_return_delegation(inode, delegation, 0); |
| 326 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 327 | iput(inode); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 328 | if (!err) |
| 329 | goto restart; |
| 330 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); |
| 331 | return err; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 332 | } |
| 333 | rcu_read_unlock(); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 334 | return 0; |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | /* |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 338 | * This function returns the delegation without reclaiming opens |
| 339 | * or protecting against delegation reclaims. |
| 340 | * It is therefore really only safe to be called from |
| 341 | * nfs4_clear_inode() |
| 342 | */ |
| 343 | void nfs_inode_return_delegation_noreclaim(struct inode *inode) |
| 344 | { |
| 345 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 346 | struct nfs_inode *nfsi = NFS_I(inode); |
| 347 | struct nfs_delegation *delegation; |
| 348 | |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 349 | if (rcu_access_pointer(nfsi->delegation) != NULL) { |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 350 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 351 | delegation = nfs_detach_delegation_locked(nfsi, NULL, clp); |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 352 | spin_unlock(&clp->cl_lock); |
| 353 | if (delegation != NULL) |
| 354 | nfs_do_return_delegation(inode, delegation, 0); |
| 355 | } |
| 356 | } |
| 357 | |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 358 | int nfs_inode_return_delegation(struct inode *inode) |
| 359 | { |
| 360 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 361 | struct nfs_inode *nfsi = NFS_I(inode); |
| 362 | struct nfs_delegation *delegation; |
| 363 | int err = 0; |
| 364 | |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 365 | if (rcu_access_pointer(nfsi->delegation) != NULL) { |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 366 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 367 | delegation = nfs_detach_delegation_locked(nfsi, NULL, clp); |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 368 | spin_unlock(&clp->cl_lock); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 369 | if (delegation != NULL) { |
| 370 | nfs_msync_inode(inode); |
| 371 | err = __nfs_inode_return_delegation(inode, delegation, 1); |
| 372 | } |
Trond Myklebust | 9016302 | 2007-07-05 14:55:18 -0400 | [diff] [blame] | 373 | } |
| 374 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 377 | static void nfs_mark_return_delegation(struct nfs_client *clp, struct nfs_delegation *delegation) |
| 378 | { |
| 379 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); |
| 380 | set_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state); |
| 381 | } |
| 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | /* |
| 384 | * Return all delegations associated to a super block |
| 385 | */ |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 386 | void nfs_super_return_all_delegations(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 388 | struct nfs_client *clp = NFS_SB(sb)->nfs_client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | struct nfs_delegation *delegation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
| 391 | if (clp == NULL) |
| 392 | return; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 393 | rcu_read_lock(); |
| 394 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 395 | spin_lock(&delegation->lock); |
| 396 | if (delegation->inode != NULL && delegation->inode->i_sb == sb) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 397 | set_bit(NFS_DELEGATION_RETURN, &delegation->flags); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 398 | spin_unlock(&delegation->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 400 | rcu_read_unlock(); |
Trond Myklebust | d18cc1f | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 401 | if (nfs_client_return_marked_delegations(clp) != 0) |
| 402 | nfs4_schedule_state_manager(clp); |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 403 | } |
| 404 | |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 405 | static |
| 406 | void nfs_client_mark_return_all_delegation_types(struct nfs_client *clp, fmode_t flags) |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 407 | { |
| 408 | struct nfs_delegation *delegation; |
| 409 | |
| 410 | rcu_read_lock(); |
Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 411 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 412 | if ((delegation->type == (FMODE_READ|FMODE_WRITE)) && !(flags & FMODE_WRITE)) |
| 413 | continue; |
| 414 | if (delegation->type & flags) |
| 415 | nfs_mark_return_delegation(clp, delegation); |
Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 416 | } |
Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 417 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 420 | static void nfs_client_mark_return_all_delegations(struct nfs_client *clp) |
| 421 | { |
| 422 | nfs_client_mark_return_all_delegation_types(clp, FMODE_READ|FMODE_WRITE); |
| 423 | } |
| 424 | |
Trond Myklebust | b0d3ded | 2008-12-23 15:21:50 -0500 | [diff] [blame] | 425 | static void nfs_delegation_run_state_manager(struct nfs_client *clp) |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 426 | { |
Trond Myklebust | b0d3ded | 2008-12-23 15:21:50 -0500 | [diff] [blame] | 427 | if (test_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) |
| 428 | nfs4_schedule_state_manager(clp); |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 429 | } |
| 430 | |
Alexandros Batsakis | 31f0960 | 2009-12-05 13:27:02 -0500 | [diff] [blame] | 431 | void nfs_expire_all_delegation_types(struct nfs_client *clp, fmode_t flags) |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 432 | { |
| 433 | nfs_client_mark_return_all_delegation_types(clp, flags); |
| 434 | nfs_delegation_run_state_manager(clp); |
| 435 | } |
| 436 | |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 437 | void nfs_expire_all_delegations(struct nfs_client *clp) |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 438 | { |
Alexandros Batsakis | c79571a | 2009-12-05 13:20:52 -0500 | [diff] [blame] | 439 | nfs_expire_all_delegation_types(clp, FMODE_READ|FMODE_WRITE); |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 440 | } |
| 441 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | /* |
| 443 | * Return all delegations following an NFS4ERR_CB_PATH_DOWN error. |
| 444 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 445 | void nfs_handle_cb_pathdown(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | if (clp == NULL) |
| 448 | return; |
Trond Myklebust | 707fb4b | 2008-12-23 15:21:47 -0500 | [diff] [blame] | 449 | nfs_client_mark_return_all_delegations(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 452 | static void nfs_client_mark_return_unreferenced_delegations(struct nfs_client *clp) |
| 453 | { |
| 454 | struct nfs_delegation *delegation; |
| 455 | |
| 456 | rcu_read_lock(); |
| 457 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
| 458 | if (test_and_clear_bit(NFS_DELEGATION_REFERENCED, &delegation->flags)) |
| 459 | continue; |
Alexandros Batsakis | b4a6f49 | 2009-12-05 13:19:11 -0500 | [diff] [blame] | 460 | nfs_mark_return_delegation(clp, delegation); |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 461 | } |
| 462 | rcu_read_unlock(); |
| 463 | } |
| 464 | |
| 465 | void nfs_expire_unreferenced_delegations(struct nfs_client *clp) |
| 466 | { |
| 467 | nfs_client_mark_return_unreferenced_delegations(clp); |
| 468 | nfs_delegation_run_state_manager(clp); |
| 469 | } |
| 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | /* |
| 472 | * Asynchronous delegation recall! |
| 473 | */ |
Alexandros Batsakis | 2597641 | 2009-12-05 13:48:55 -0500 | [diff] [blame] | 474 | int nfs_async_inode_return_delegation(struct inode *inode, const nfs4_stateid *stateid, |
| 475 | int (*validate_stateid)(struct nfs_delegation *delegation, |
| 476 | const nfs4_stateid *stateid)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 478 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 479 | struct nfs_delegation *delegation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 481 | rcu_read_lock(); |
| 482 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
Alexandros Batsakis | 2597641 | 2009-12-05 13:48:55 -0500 | [diff] [blame] | 483 | |
| 484 | if (!validate_stateid(delegation, stateid)) { |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 485 | rcu_read_unlock(); |
| 486 | return -ENOENT; |
| 487 | } |
Alexandros Batsakis | 2597641 | 2009-12-05 13:48:55 -0500 | [diff] [blame] | 488 | |
Trond Myklebust | 6411bd4 | 2008-12-23 15:21:51 -0500 | [diff] [blame] | 489 | nfs_mark_return_delegation(clp, delegation); |
| 490 | rcu_read_unlock(); |
| 491 | nfs_delegation_run_state_manager(clp); |
| 492 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | /* |
| 496 | * Retrieve the inode associated with a delegation |
| 497 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 498 | struct inode *nfs_delegation_find_inode(struct nfs_client *clp, const struct nfs_fh *fhandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | { |
| 500 | struct nfs_delegation *delegation; |
| 501 | struct inode *res = NULL; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 502 | rcu_read_lock(); |
| 503 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 504 | spin_lock(&delegation->lock); |
| 505 | if (delegation->inode != NULL && |
| 506 | nfs_compare_fh(fhandle, &NFS_I(delegation->inode)->fh) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | res = igrab(delegation->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | } |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 509 | spin_unlock(&delegation->lock); |
| 510 | if (res != NULL) |
| 511 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 513 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | return res; |
| 515 | } |
| 516 | |
| 517 | /* |
| 518 | * Mark all delegations as needing to be reclaimed |
| 519 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 520 | void nfs_delegation_mark_reclaim(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | { |
| 522 | struct nfs_delegation *delegation; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 523 | rcu_read_lock(); |
| 524 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) |
Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 525 | set_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 526 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | /* |
| 530 | * Reap all unclaimed delegations after reboot recovery is done |
| 531 | */ |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 532 | void nfs_delegation_reap_unclaimed(struct nfs_client *clp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | { |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 534 | struct nfs_delegation *delegation; |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 535 | struct inode *inode; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 536 | restart: |
| 537 | rcu_read_lock(); |
| 538 | list_for_each_entry_rcu(delegation, &clp->cl_delegations, super_list) { |
Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 539 | if (test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | continue; |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 541 | inode = nfs_delegation_grab_inode(delegation); |
| 542 | if (inode == NULL) |
| 543 | continue; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 544 | spin_lock(&clp->cl_lock); |
David Howells | 17d2c0a | 2010-05-01 12:37:18 -0400 | [diff] [blame] | 545 | delegation = nfs_detach_delegation_locked(NFS_I(inode), NULL, clp); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 546 | spin_unlock(&clp->cl_lock); |
| 547 | rcu_read_unlock(); |
| 548 | if (delegation != NULL) |
Trond Myklebust | 905f8d1 | 2007-08-06 12:18:34 -0400 | [diff] [blame] | 549 | nfs_free_delegation(delegation); |
Trond Myklebust | 86e8948 | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 550 | iput(inode); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 551 | goto restart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 553 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 555 | |
| 556 | int nfs4_copy_delegation_stateid(nfs4_stateid *dst, struct inode *inode) |
| 557 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 558 | struct nfs_inode *nfsi = NFS_I(inode); |
| 559 | struct nfs_delegation *delegation; |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 560 | int ret = 0; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 561 | |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 562 | rcu_read_lock(); |
| 563 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 564 | if (delegation != NULL) { |
| 565 | memcpy(dst->data, delegation->stateid.data, sizeof(dst->data)); |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 566 | ret = 1; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 567 | } |
Trond Myklebust | 8383e46 | 2007-07-06 15:12:04 -0400 | [diff] [blame] | 568 | rcu_read_unlock(); |
| 569 | return ret; |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 570 | } |