Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/lockd/clntlock.c |
| 3 | * |
| 4 | * Lock handling for the client side NLM implementation |
| 5 | * |
| 6 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/time.h> |
| 13 | #include <linux/nfs_fs.h> |
Jeff Layton | 5976687 | 2013-02-04 12:50:00 -0500 | [diff] [blame] | 14 | #include <linux/sunrpc/addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sunrpc/svc.h> |
| 16 | #include <linux/lockd/lockd.h> |
Jeff Layton | df94f00 | 2008-12-23 15:21:33 -0500 | [diff] [blame] | 17 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #define NLMDBG_FACILITY NLMDBG_CLIENT |
| 20 | |
| 21 | /* |
| 22 | * Local function prototypes |
| 23 | */ |
| 24 | static int reclaimer(void *ptr); |
| 25 | |
| 26 | /* |
| 27 | * The following functions handle blocking and granting from the |
| 28 | * client perspective. |
| 29 | */ |
| 30 | |
| 31 | /* |
| 32 | * This is the representation of a blocked client lock. |
| 33 | */ |
| 34 | struct nlm_wait { |
Trond Myklebust | 4f15e2b | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 35 | struct list_head b_list; /* linked list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | wait_queue_head_t b_wait; /* where to wait on */ |
| 37 | struct nlm_host * b_host; |
| 38 | struct file_lock * b_lock; /* local file lock */ |
| 39 | unsigned short b_reclaim; /* got to reclaim lock */ |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 40 | __be32 b_status; /* grant callback status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | }; |
| 42 | |
Trond Myklebust | 4f15e2b | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 43 | static LIST_HEAD(nlm_blocked); |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 44 | static DEFINE_SPINLOCK(nlm_blocked_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 46 | /** |
| 47 | * nlmclnt_init - Set up per-NFS mount point lockd data structures |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 48 | * @nlm_init: pointer to arguments structure |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 49 | * |
| 50 | * Returns pointer to an appropriate nlm_host struct, |
| 51 | * or an ERR_PTR value. |
| 52 | */ |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 53 | struct nlm_host *nlmclnt_init(const struct nlmclnt_initdata *nlm_init) |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 54 | { |
| 55 | struct nlm_host *host; |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 56 | u32 nlm_version = (nlm_init->nfs_version == 2) ? 1 : 4; |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 57 | int status; |
| 58 | |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 59 | status = lockd_up(nlm_init->net); |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 60 | if (status < 0) |
| 61 | return ERR_PTR(status); |
| 62 | |
Chuck Lever | d7d2044 | 2008-10-03 12:50:21 -0400 | [diff] [blame] | 63 | host = nlmclnt_lookup_host(nlm_init->address, nlm_init->addrlen, |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 64 | nlm_init->protocol, nlm_version, |
Stanislav Kinsbursky | 66697bf | 2012-01-31 15:08:13 +0400 | [diff] [blame] | 65 | nlm_init->hostname, nlm_init->noresvport, |
| 66 | nlm_init->net); |
Trond Myklebust | 9a1b6bf | 2013-08-05 12:06:12 -0400 | [diff] [blame] | 67 | if (host == NULL) |
| 68 | goto out_nohost; |
| 69 | if (host->h_rpcclnt == NULL && nlm_bind_host(host) == NULL) |
| 70 | goto out_nobind; |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 71 | |
| 72 | return host; |
Trond Myklebust | 9a1b6bf | 2013-08-05 12:06:12 -0400 | [diff] [blame] | 73 | out_nobind: |
| 74 | nlmclnt_release_host(host); |
| 75 | out_nohost: |
| 76 | lockd_down(nlm_init->net); |
| 77 | return ERR_PTR(-ENOLCK); |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 78 | } |
| 79 | EXPORT_SYMBOL_GPL(nlmclnt_init); |
| 80 | |
| 81 | /** |
| 82 | * nlmclnt_done - Release resources allocated by nlmclnt_init() |
| 83 | * @host: nlm_host structure reserved by nlmclnt_init() |
| 84 | * |
| 85 | */ |
| 86 | void nlmclnt_done(struct nlm_host *host) |
| 87 | { |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 88 | struct net *net = host->net; |
| 89 | |
Chuck Lever | 8ea6ecc | 2010-12-14 15:05:52 +0000 | [diff] [blame] | 90 | nlmclnt_release_host(host); |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 91 | lockd_down(net); |
Chuck Lever | 52c4044 | 2008-01-11 17:09:44 -0500 | [diff] [blame] | 92 | } |
| 93 | EXPORT_SYMBOL_GPL(nlmclnt_done); |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /* |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 96 | * Queue up a lock for blocking so that the GRANTED request can see it |
| 97 | */ |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 98 | struct nlm_wait *nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl) |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 99 | { |
| 100 | struct nlm_wait *block; |
| 101 | |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 102 | block = kmalloc(sizeof(*block), GFP_KERNEL); |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 103 | if (block != NULL) { |
| 104 | block->b_host = host; |
| 105 | block->b_lock = fl; |
| 106 | init_waitqueue_head(&block->b_wait); |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 107 | block->b_status = nlm_lck_blocked; |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 108 | |
| 109 | spin_lock(&nlm_blocked_lock); |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 110 | list_add(&block->b_list, &nlm_blocked); |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 111 | spin_unlock(&nlm_blocked_lock); |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 112 | } |
| 113 | return block; |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 116 | void nlmclnt_finish_block(struct nlm_wait *block) |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 117 | { |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 118 | if (block == NULL) |
| 119 | return; |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 120 | spin_lock(&nlm_blocked_lock); |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 121 | list_del(&block->b_list); |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 122 | spin_unlock(&nlm_blocked_lock); |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 123 | kfree(block); |
| 124 | } |
| 125 | |
| 126 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | * Block on a lock |
| 128 | */ |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 129 | int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 131 | long ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 133 | /* A borken server might ask us to block even if we didn't |
| 134 | * request it. Just say no! |
| 135 | */ |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 136 | if (block == NULL) |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 137 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | /* Go to sleep waiting for GRANT callback. Some servers seem |
| 140 | * to lose callbacks, however, so we're going to poll from |
| 141 | * time to time just to make sure. |
| 142 | * |
| 143 | * For now, the retry frequency is pretty high; normally |
| 144 | * a 1 minute timeout would do. See the comment before |
| 145 | * nlmclnt_lock for an explanation. |
| 146 | */ |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 147 | ret = wait_event_interruptible_timeout(block->b_wait, |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 148 | block->b_status != nlm_lck_blocked, |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 149 | timeout); |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 150 | if (ret < 0) |
| 151 | return -ERESTARTSYS; |
Trond Myklebust | 1dfd89a | 2013-04-21 18:01:06 -0400 | [diff] [blame] | 152 | /* Reset the lock status after a server reboot so we resend */ |
| 153 | if (block->b_status == nlm_lck_denied_grace_period) |
| 154 | block->b_status = nlm_lck_blocked; |
Trond Myklebust | 3a649b8 | 2006-03-20 13:44:44 -0500 | [diff] [blame] | 155 | req->a_res.status = block->b_status; |
| 156 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* |
| 160 | * The server lockd has called us back to tell us the lock was granted |
| 161 | */ |
Chuck Lever | dcff09f | 2008-10-03 12:50:36 -0400 | [diff] [blame] | 162 | __be32 nlmclnt_grant(const struct sockaddr *addr, const struct nlm_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 164 | const struct file_lock *fl = &lock->fl; |
| 165 | const struct nfs_fh *fh = &lock->fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | struct nlm_wait *block; |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 167 | __be32 res = nlm_lck_denied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | /* |
| 170 | * Look up blocked request based on arguments. |
| 171 | * Warning: must not use cookie to match it! |
| 172 | */ |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 173 | spin_lock(&nlm_blocked_lock); |
Trond Myklebust | 4f15e2b | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 174 | list_for_each_entry(block, &nlm_blocked, b_list) { |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 175 | struct file_lock *fl_blocked = block->b_lock; |
| 176 | |
Trond Myklebust | 7bab377 | 2006-03-20 13:44:06 -0500 | [diff] [blame] | 177 | if (fl_blocked->fl_start != fl->fl_start) |
| 178 | continue; |
| 179 | if (fl_blocked->fl_end != fl->fl_end) |
| 180 | continue; |
| 181 | /* |
| 182 | * Careful! The NLM server will return the 32-bit "pid" that |
| 183 | * we put on the wire: in this case the lockowner "pid". |
| 184 | */ |
| 185 | if (fl_blocked->fl_u.nfs_fl.owner->pid != lock->svid) |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 186 | continue; |
Jeff Layton | 4516fc0 | 2009-08-14 12:57:54 -0400 | [diff] [blame] | 187 | if (!rpc_cmp_addr(nlm_addr(block->b_host), addr)) |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 188 | continue; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 189 | if (nfs_compare_fh(NFS_FH(file_inode(fl_blocked->fl_file)) ,fh) != 0) |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 190 | continue; |
| 191 | /* Alright, we found a lock. Set the return status |
| 192 | * and wake up the caller |
| 193 | */ |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 194 | block->b_status = nlm_granted; |
Trond Myklebust | 5ac5f9d | 2006-02-14 13:53:04 -0800 | [diff] [blame] | 195 | wake_up(&block->b_wait); |
| 196 | res = nlm_granted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 198 | spin_unlock(&nlm_blocked_lock); |
Trond Myklebust | ecdbf76 | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 199 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /* |
| 203 | * The following procedures deal with the recovery of locks after a |
| 204 | * server crash. |
| 205 | */ |
| 206 | |
| 207 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | * Reclaim all locks on server host. We do this by spawning a separate |
| 209 | * reclaimer thread. |
| 210 | */ |
| 211 | void |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 212 | nlmclnt_recovery(struct nlm_host *host) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Jeff Layton | df94f00 | 2008-12-23 15:21:33 -0500 | [diff] [blame] | 214 | struct task_struct *task; |
| 215 | |
Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 216 | if (!host->h_reclaiming++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | nlm_get_host(host); |
Jeff Layton | df94f00 | 2008-12-23 15:21:33 -0500 | [diff] [blame] | 218 | task = kthread_run(reclaimer, host, "%s-reclaim", host->h_name); |
| 219 | if (IS_ERR(task)) |
| 220 | printk(KERN_ERR "lockd: unable to spawn reclaimer " |
| 221 | "thread. Locks for %s won't be reclaimed! " |
| 222 | "(%ld)\n", host->h_name, PTR_ERR(task)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | } |
| 224 | } |
| 225 | |
| 226 | static int |
| 227 | reclaimer(void *ptr) |
| 228 | { |
| 229 | struct nlm_host *host = (struct nlm_host *) ptr; |
| 230 | struct nlm_wait *block; |
Tim Gardner | f25cc71 | 2013-02-13 08:40:16 -0700 | [diff] [blame] | 231 | struct nlm_rqst *req; |
Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 232 | struct file_lock *fl, *next; |
Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 233 | u32 nsmstate; |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 234 | struct net *net = host->net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
Tim Gardner | f25cc71 | 2013-02-13 08:40:16 -0700 | [diff] [blame] | 236 | req = kmalloc(sizeof(*req), GFP_KERNEL); |
| 237 | if (!req) { |
| 238 | printk(KERN_ERR "lockd: reclaimer unable to alloc memory." |
| 239 | " Locks for %s won't be reclaimed!\n", |
| 240 | host->h_name); |
| 241 | return 0; |
| 242 | } |
| 243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | allow_signal(SIGKILL); |
| 245 | |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 246 | down_write(&host->h_rwsem); |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 247 | lockd_up(net); /* note: this cannot fail as lockd is already running */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Adrian Bunk | d019bcf | 2007-01-29 13:19:51 -0800 | [diff] [blame] | 249 | dprintk("lockd: reclaiming locks for host %s\n", host->h_name); |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | restart: |
Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 252 | nsmstate = host->h_nsmstate; |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 253 | |
| 254 | /* Force a portmap getport - the peer's lockd will |
| 255 | * most likely end up on a different port. |
| 256 | */ |
Olaf Kirch | 0ade060 | 2006-10-04 02:16:04 -0700 | [diff] [blame] | 257 | host->h_nextrebind = jiffies; |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 258 | nlm_rebind_host(host); |
| 259 | |
| 260 | /* First, reclaim all locks that have been granted. */ |
| 261 | list_splice_init(&host->h_granted, &host->h_reclaim); |
Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 262 | list_for_each_entry_safe(fl, next, &host->h_reclaim, fl_u.nfs_fl.list) { |
Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 263 | list_del_init(&fl->fl_u.nfs_fl.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Jeff Layton | df94f00 | 2008-12-23 15:21:33 -0500 | [diff] [blame] | 265 | /* |
| 266 | * sending this thread a SIGKILL will result in any unreclaimed |
| 267 | * locks being removed from the h_granted list. This means that |
| 268 | * the kernel will not attempt to reclaim them again if a new |
| 269 | * reclaimer thread is spawned for this host. |
| 270 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | if (signalled()) |
Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 272 | continue; |
Tim Gardner | f25cc71 | 2013-02-13 08:40:16 -0700 | [diff] [blame] | 273 | if (nlmclnt_reclaim(host, fl, req) != 0) |
Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 274 | continue; |
| 275 | list_add_tail(&fl->fl_u.nfs_fl.list, &host->h_granted); |
| 276 | if (host->h_nsmstate != nsmstate) { |
| 277 | /* Argh! The server rebooted again! */ |
Trond Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 278 | goto restart; |
| 279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 281 | |
| 282 | host->h_reclaiming = 0; |
| 283 | up_write(&host->h_rwsem); |
Adrian Bunk | d019bcf | 2007-01-29 13:19:51 -0800 | [diff] [blame] | 284 | dprintk("NLM: done reclaiming locks for host %s\n", host->h_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | /* Now, wake up all processes that sleep on a blocked lock */ |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 287 | spin_lock(&nlm_blocked_lock); |
Trond Myklebust | 4f15e2b | 2005-06-22 17:16:31 +0000 | [diff] [blame] | 288 | list_for_each_entry(block, &nlm_blocked, b_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | if (block->b_host == host) { |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 290 | block->b_status = nlm_lck_denied_grace_period; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | wake_up(&block->b_wait); |
| 292 | } |
| 293 | } |
Bryan Schumaker | 6318594 | 2010-09-22 09:50:35 -0400 | [diff] [blame] | 294 | spin_unlock(&nlm_blocked_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
| 296 | /* Release host handle after use */ |
Chuck Lever | 8ea6ecc | 2010-12-14 15:05:52 +0000 | [diff] [blame] | 297 | nlmclnt_release_host(host); |
Stanislav Kinsbursky | e3f70ea | 2012-03-29 18:54:33 +0400 | [diff] [blame] | 298 | lockd_down(net); |
Tim Gardner | f25cc71 | 2013-02-13 08:40:16 -0700 | [diff] [blame] | 299 | kfree(req); |
Jeff Layton | df94f00 | 2008-12-23 15:21:33 -0500 | [diff] [blame] | 300 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |