svclock.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/lockd/svclock.c
  3.  *
  4.  * Handling of server-side locks, mostly of the blocked variety.
  5.  * This is the ugliest part of lockd because we tread on very thin ice.
  6.  * GRANT and CANCEL calls may get stuck, meet in mid-flight, etc.
  7.  * IMNSHO introducing the grant callback into the NLM protocol was one
  8.  * of the worst ideas Sun ever had. Except maybe for the idea of doing
  9.  * NFS file locking at all.
  10.  *
  11.  * I'm trying hard to avoid race conditions by protecting most accesses
  12.  * to a file's list of blocked locks through a semaphore. The global
  13.  * list of blocked locks is not protected in this fashion however.
  14.  * Therefore, some functions (such as the RPC callback for the async grant
  15.  * call) move blocked locks towards the head of the list *while some other
  16.  * process might be traversing it*. This should not be a problem in
  17.  * practice, because this will only cause functions traversing the list
  18.  * to visit some blocks twice.
  19.  *
  20.  * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
  21.  */
  22. #include <linux/config.h>
  23. #include <linux/types.h>
  24. #include <linux/errno.h>
  25. #include <linux/kernel.h>
  26. #include <linux/sched.h>
  27. #include <linux/smp_lock.h>
  28. #include <linux/sunrpc/clnt.h>
  29. #include <linux/sunrpc/svc.h>
  30. #include <linux/lockd/nlm.h>
  31. #include <linux/lockd/lockd.h>
  32. #define NLMDBG_FACILITY NLMDBG_SVCLOCK
  33. #ifdef CONFIG_LOCKD_V4
  34. #define nlm_deadlock nlm4_deadlock
  35. #else
  36. #define nlm_deadlock nlm_lck_denied
  37. #endif
  38. static void nlmsvc_insert_block(struct nlm_block *block, unsigned long);
  39. static int nlmsvc_remove_block(struct nlm_block *block);
  40. static void nlmsvc_grant_callback(struct rpc_task *task);
  41. static void nlmsvc_notify_blocked(struct file_lock *);
  42. /*
  43.  * The list of blocked locks to retry
  44.  */
  45. static struct nlm_block * nlm_blocked;
  46. /*
  47.  * Insert a blocked lock into the global list
  48.  */
  49. static void
  50. nlmsvc_insert_block(struct nlm_block *block, unsigned long when)
  51. {
  52. struct nlm_block **bp, *b;
  53. dprintk("lockd: nlmsvc_insert_block(%p, %ld)n", block, when);
  54. if (block->b_queued)
  55. nlmsvc_remove_block(block);
  56. bp = &nlm_blocked;
  57. if (when != NLM_NEVER) {
  58. if ((when += jiffies) == NLM_NEVER)
  59. when ++;
  60. while ((b = *bp) && time_before_eq(b->b_when,when))
  61. bp = &b->b_next;
  62. } else
  63. while ((b = *bp))
  64. bp = &b->b_next;
  65. block->b_queued = 1;
  66. block->b_when = when;
  67. block->b_next = b;
  68. *bp = block;
  69. }
  70. /*
  71.  * Remove a block from the global list
  72.  */
  73. static int
  74. nlmsvc_remove_block(struct nlm_block *block)
  75. {
  76. struct nlm_block **bp, *b;
  77. if (!block->b_queued)
  78. return 1;
  79. for (bp = &nlm_blocked; (b = *bp); bp = &b->b_next) {
  80. if (b == block) {
  81. *bp = block->b_next;
  82. block->b_queued = 0;
  83. return 1;
  84. }
  85. }
  86. return 0;
  87. }
  88. /*
  89.  * Find a block for a given lock and optionally remove it from
  90.  * the list.
  91.  */
  92. static struct nlm_block *
  93. nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock, int remove)
  94. {
  95. struct nlm_block **head, *block;
  96. struct file_lock *fl;
  97. dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%dn",
  98. file, lock->fl.fl_pid,
  99. (long long)lock->fl.fl_start,
  100. (long long)lock->fl.fl_end, lock->fl.fl_type);
  101. for (head = &nlm_blocked; (block = *head); head = &block->b_next) {
  102. fl = &block->b_call.a_args.lock.fl;
  103. dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%xn",
  104. block->b_file, fl->fl_pid,
  105. (long long)fl->fl_start,
  106. (long long)fl->fl_end, fl->fl_type,
  107. *(unsigned int*)(block->b_call.a_args.cookie.data));
  108. if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) {
  109. if (remove) {
  110. *head = block->b_next;
  111. block->b_queued = 0;
  112. }
  113. return block;
  114. }
  115. }
  116. return NULL;
  117. }
  118. static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b)
  119. {
  120. if(a->len != b->len)
  121. return 0;
  122. if(memcmp(a->data,b->data,a->len))
  123. return 0;
  124. return 1;
  125. }
  126. /*
  127.  * Find a block with a given NLM cookie.
  128.  */
  129. static inline struct nlm_block *
  130. nlmsvc_find_block(struct nlm_cookie *cookie)
  131. {
  132. struct nlm_block *block;
  133. for (block = nlm_blocked; block; block = block->b_next) {
  134. dprintk("cookie: head of blocked queue %p, block %pn", 
  135. nlm_blocked, block);
  136. if (nlm_cookie_match(&block->b_call.a_args.cookie,cookie))
  137. break;
  138. }
  139. return block;
  140. }
  141. /*
  142.  * Create a block and initialize it.
  143.  *
  144.  * Note: we explicitly set the cookie of the grant reply to that of
  145.  * the blocked lock request. The spec explicitly mentions that the client
  146.  * should _not_ rely on the callback containing the same cookie as the
  147.  * request, but (as I found out later) that's because some implementations
  148.  * do just this. Never mind the standards comittees, they support our
  149.  * logging industries.
  150.  */
  151. static inline struct nlm_block *
  152. nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_file *file,
  153. struct nlm_lock *lock, struct nlm_cookie *cookie)
  154. {
  155. struct nlm_block *block;
  156. struct nlm_host *host;
  157. struct nlm_rqst *call;
  158. /* Create host handle for callback */
  159. host = nlmclnt_lookup_host(&rqstp->rq_addr,
  160. rqstp->rq_prot, rqstp->rq_vers);
  161. if (host == NULL)
  162. return NULL;
  163. /* Allocate memory for block, and initialize arguments */
  164. if (!(block = (struct nlm_block *) kmalloc(sizeof(*block), GFP_KERNEL)))
  165. goto failed;
  166. memset(block, 0, sizeof(*block));
  167. locks_init_lock(&block->b_call.a_args.lock.fl);
  168. locks_init_lock(&block->b_call.a_res.lock.fl);
  169. if (!nlmclnt_setgrantargs(&block->b_call, lock))
  170. goto failed_free;
  171. /* Set notifier function for VFS, and init args */
  172. block->b_call.a_args.lock.fl.fl_notify = nlmsvc_notify_blocked;
  173. block->b_call.a_args.cookie = *cookie; /* see above */
  174. dprintk("lockd: created block %p...n", block);
  175. /* Create and initialize the block */
  176. block->b_daemon = rqstp->rq_server;
  177. block->b_host   = host;
  178. block->b_file   = file;
  179. /* Add to file's list of blocks */
  180. block->b_fnext  = file->f_blocks;
  181. file->f_blocks  = block;
  182. /* Set up RPC arguments for callback */
  183. call = &block->b_call;
  184. call->a_host    = host;
  185. call->a_flags   = RPC_TASK_ASYNC;
  186. return block;
  187. failed_free:
  188. kfree(block);
  189. failed:
  190. nlm_release_host(host);
  191. return NULL;
  192. }
  193. /*
  194.  * Delete a block. If the lock was cancelled or the grant callback
  195.  * failed, unlock is set to 1.
  196.  * It is the caller's responsibility to check whether the file
  197.  * can be closed hereafter.
  198.  */
  199. static void
  200. nlmsvc_delete_block(struct nlm_block *block, int unlock)
  201. {
  202. struct file_lock *fl = &block->b_call.a_args.lock.fl;
  203. struct nlm_file *file = block->b_file;
  204. struct nlm_block **bp;
  205. dprintk("lockd: deleting block %p...n", block);
  206. /* Remove block from list */
  207. nlmsvc_remove_block(block);
  208. /* If granted, unlock it, else remove from inode block list */
  209. if (unlock && block->b_granted) {
  210. dprintk("lockd: deleting granted lockn");
  211. fl->fl_type = F_UNLCK;
  212. posix_lock_file(&block->b_file->f_file, fl, 0);
  213. block->b_granted = 0;
  214. } else {
  215. dprintk("lockd: unblocking blocked lockn");
  216. posix_unblock_lock(fl);
  217. }
  218. /* If the block is in the middle of a GRANT callback,
  219.  * don't kill it yet. */
  220. if (block->b_incall) {
  221. nlmsvc_insert_block(block, NLM_NEVER);
  222. block->b_done = 1;
  223. return;
  224. }
  225. /* Remove block from file's list of blocks */
  226. for (bp = &file->f_blocks; *bp; bp = &(*bp)->b_fnext) {
  227. if (*bp == block) {
  228. *bp = block->b_fnext;
  229. break;
  230. }
  231. }
  232. if (block->b_host)
  233. nlm_release_host(block->b_host);
  234. nlmclnt_freegrantargs(&block->b_call);
  235. kfree(block);
  236. }
  237. /*
  238.  * Loop over all blocks and perform the action specified.
  239.  * (NLM_ACT_CHECK handled by nlmsvc_inspect_file).
  240.  */
  241. int
  242. nlmsvc_traverse_blocks(struct nlm_host *host, struct nlm_file *file, int action)
  243. {
  244. struct nlm_block *block, *next;
  245. down(&file->f_sema);
  246. for (block = file->f_blocks; block; block = next) {
  247. next = block->b_fnext;
  248. if (action == NLM_ACT_MARK)
  249. block->b_host->h_inuse = 1;
  250. else if (action == NLM_ACT_UNLOCK) {
  251. if (host == NULL || host == block->b_host)
  252. nlmsvc_delete_block(block, 1);
  253. }
  254. }
  255. up(&file->f_sema);
  256. return 0;
  257. }
  258. /*
  259.  * Attempt to establish a lock, and if it can't be granted, block it
  260.  * if required.
  261.  */
  262. u32
  263. nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file,
  264. struct nlm_lock *lock, int wait, struct nlm_cookie *cookie)
  265. {
  266. struct file_lock *conflock;
  267. struct nlm_block *block;
  268. int error;
  269. dprintk("lockd: nlmsvc_lock(%04x/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)n",
  270. file->f_file.f_dentry->d_inode->i_dev,
  271. file->f_file.f_dentry->d_inode->i_ino,
  272. lock->fl.fl_type, lock->fl.fl_pid,
  273. (long long)lock->fl.fl_start,
  274. (long long)lock->fl.fl_end,
  275. wait);
  276. /* Lock file against concurrent access */
  277. down(&file->f_sema);
  278. /* Get existing block (in case client is busy-waiting) */
  279. block = nlmsvc_lookup_block(file, lock, 0);
  280. lock->fl.fl_flags |= FL_LOCKD;
  281. again:
  282. if (!(conflock = posix_test_lock(&file->f_file, &lock->fl))) {
  283. error = posix_lock_file(&file->f_file, &lock->fl, 0);
  284. if (block)
  285. nlmsvc_delete_block(block, 0);
  286. up(&file->f_sema);
  287. dprintk("lockd: posix_lock_file returned %dn", -error);
  288. switch(-error) {
  289. case 0:
  290. return nlm_granted;
  291. case EDEADLK:
  292. return nlm_deadlock;
  293. case EAGAIN:
  294. return nlm_lck_denied;
  295. default: /* includes ENOLCK */
  296. return nlm_lck_denied_nolocks;
  297. }
  298. }
  299. if (!wait) {
  300. up(&file->f_sema);
  301. return nlm_lck_denied;
  302. }
  303. if (posix_locks_deadlock(&lock->fl, conflock)) {
  304. up(&file->f_sema);
  305. return nlm_deadlock;
  306. }
  307. /* If we don't have a block, create and initialize it. Then
  308.  * retry because we may have slept in kmalloc. */
  309. if (block == NULL) {
  310. dprintk("lockd: blocking on this lock (allocating).n");
  311. if (!(block = nlmsvc_create_block(rqstp, file, lock, cookie)))
  312. return nlm_lck_denied_nolocks;
  313. goto again;
  314. }
  315. /* Append to list of blocked */
  316. nlmsvc_insert_block(block, NLM_NEVER);
  317. if (list_empty(&block->b_call.a_args.lock.fl.fl_block)) {
  318. /* Now add block to block list of the conflicting lock
  319.    if we haven't done so. */
  320. dprintk("lockd: blocking on this lock.n");
  321. posix_block_lock(conflock, &block->b_call.a_args.lock.fl);
  322. }
  323. up(&file->f_sema);
  324. return nlm_lck_blocked;
  325. }
  326. /*
  327.  * Test for presence of a conflicting lock.
  328.  */
  329. u32
  330. nlmsvc_testlock(struct nlm_file *file, struct nlm_lock *lock,
  331.        struct nlm_lock *conflock)
  332. {
  333. struct file_lock *fl;
  334. dprintk("lockd: nlmsvc_testlock(%04x/%ld, ty=%d, %Ld-%Ld)n",
  335. file->f_file.f_dentry->d_inode->i_dev,
  336. file->f_file.f_dentry->d_inode->i_ino,
  337. lock->fl.fl_type,
  338. (long long)lock->fl.fl_start,
  339. (long long)lock->fl.fl_end);
  340. if ((fl = posix_test_lock(&file->f_file, &lock->fl)) != NULL) {
  341. dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)n",
  342. fl->fl_type, (long long)fl->fl_start,
  343. (long long)fl->fl_end);
  344. conflock->caller = "somehost"; /* FIXME */
  345. conflock->oh.len = 0; /* don't return OH info */
  346. conflock->fl = *fl;
  347. return nlm_lck_denied;
  348. }
  349. return nlm_granted;
  350. }
  351. /*
  352.  * Remove a lock.
  353.  * This implies a CANCEL call: We send a GRANT_MSG, the client replies
  354.  * with a GRANT_RES call which gets lost, and calls UNLOCK immediately
  355.  * afterwards. In this case the block will still be there, and hence
  356.  * must be removed.
  357.  */
  358. u32
  359. nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock)
  360. {
  361. int error;
  362. dprintk("lockd: nlmsvc_unlock(%04x/%ld, pi=%d, %Ld-%Ld)n",
  363. file->f_file.f_dentry->d_inode->i_dev,
  364. file->f_file.f_dentry->d_inode->i_ino,
  365. lock->fl.fl_pid,
  366. (long long)lock->fl.fl_start,
  367. (long long)lock->fl.fl_end);
  368. /* First, cancel any lock that might be there */
  369. nlmsvc_cancel_blocked(file, lock);
  370. lock->fl.fl_type = F_UNLCK;
  371. error = posix_lock_file(&file->f_file, &lock->fl, 0);
  372. return (error < 0)? nlm_lck_denied_nolocks : nlm_granted;
  373. }
  374. /*
  375.  * Cancel a previously blocked request.
  376.  *
  377.  * A cancel request always overrides any grant that may currently
  378.  * be in progress.
  379.  * The calling procedure must check whether the file can be closed.
  380.  */
  381. u32
  382. nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock)
  383. {
  384. struct nlm_block *block;
  385. dprintk("lockd: nlmsvc_cancel(%04x/%ld, pi=%d, %Ld-%Ld)n",
  386. file->f_file.f_dentry->d_inode->i_dev,
  387. file->f_file.f_dentry->d_inode->i_ino,
  388. lock->fl.fl_pid,
  389. (long long)lock->fl.fl_start,
  390. (long long)lock->fl.fl_end);
  391. down(&file->f_sema);
  392. if ((block = nlmsvc_lookup_block(file, lock, 1)) != NULL)
  393. nlmsvc_delete_block(block, 1);
  394. up(&file->f_sema);
  395. return nlm_granted;
  396. }
  397. /*
  398.  * Unblock a blocked lock request. This is a callback invoked from the
  399.  * VFS layer when a lock on which we blocked is removed.
  400.  *
  401.  * This function doesn't grant the blocked lock instantly, but rather moves
  402.  * the block to the head of nlm_blocked where it can be picked up by lockd.
  403.  */
  404. static void
  405. nlmsvc_notify_blocked(struct file_lock *fl)
  406. {
  407. struct nlm_block **bp, *block;
  408. dprintk("lockd: VFS unblock notification for block %pn", fl);
  409. posix_unblock_lock(fl);
  410. for (bp = &nlm_blocked; (block = *bp); bp = &block->b_next) {
  411. if (nlm_compare_locks(&block->b_call.a_args.lock.fl, fl)) {
  412. nlmsvc_insert_block(block, 0);
  413. svc_wake_up(block->b_daemon);
  414. return;
  415. }
  416. }
  417. printk(KERN_WARNING "lockd: notification for unknown block!n");
  418. }
  419. /*
  420.  * Try to claim a lock that was previously blocked.
  421.  *
  422.  * Note that we use both the RPC_GRANTED_MSG call _and_ an async
  423.  * RPC thread when notifying the client. This seems like overkill...
  424.  * Here's why:
  425.  *  - we don't want to use a synchronous RPC thread, otherwise
  426.  * we might find ourselves hanging on a dead portmapper.
  427.  *  - Some lockd implementations (e.g. HP) don't react to
  428.  * RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls.
  429.  */
  430. static void
  431. nlmsvc_grant_blocked(struct nlm_block *block)
  432. {
  433. struct nlm_file *file = block->b_file;
  434. struct nlm_lock *lock = &block->b_call.a_args.lock;
  435. struct file_lock *conflock;
  436. int error;
  437. dprintk("lockd: grant blocked lock %pn", block);
  438. /* First thing is lock the file */
  439. down(&file->f_sema);
  440. /* Unlink block request from list */
  441. nlmsvc_remove_block(block);
  442. /* If b_granted is true this means we've been here before.
  443.  * Just retry the grant callback, possibly refreshing the RPC
  444.  * binding */
  445. if (block->b_granted) {
  446. nlm_rebind_host(block->b_host);
  447. goto callback;
  448. }
  449. /* Try the lock operation again */
  450. if ((conflock = posix_test_lock(&file->f_file, &lock->fl)) != NULL) {
  451. /* Bummer, we blocked again */
  452. dprintk("lockd: lock still blockedn");
  453. nlmsvc_insert_block(block, NLM_NEVER);
  454. posix_block_lock(conflock, &lock->fl);
  455. up(&file->f_sema);
  456. return;
  457. }
  458. /* Alright, no conflicting lock. Now lock it for real. If the
  459.  * following yields an error, this is most probably due to low
  460.  * memory. Retry the lock in a few seconds.
  461.  */
  462. if ((error = posix_lock_file(&file->f_file, &lock->fl, 0)) < 0) {
  463. printk(KERN_WARNING "lockd: unexpected error %d in %s!n",
  464. -error, __FUNCTION__);
  465. nlmsvc_insert_block(block, 10 * HZ);
  466. up(&file->f_sema);
  467. return;
  468. }
  469. callback:
  470. /* Lock was granted by VFS. */
  471. dprintk("lockd: GRANTing blocked lock.n");
  472. block->b_granted = 1;
  473. block->b_incall  = 1;
  474. /* Schedule next grant callback in 30 seconds */
  475. nlmsvc_insert_block(block, 30 * HZ);
  476. /* Call the client */
  477. nlm_get_host(block->b_call.a_host);
  478. if (nlmsvc_async_call(&block->b_call, NLMPROC_GRANTED_MSG,
  479. nlmsvc_grant_callback) < 0)
  480. nlm_release_host(block->b_call.a_host);
  481. up(&file->f_sema);
  482. }
  483. /*
  484.  * This is the callback from the RPC layer when the NLM_GRANTED_MSG
  485.  * RPC call has succeeded or timed out.
  486.  * Like all RPC callbacks, it is invoked by the rpciod process, so it
  487.  * better not sleep. Therefore, we put the blocked lock on the nlm_blocked
  488.  * chain once more in order to have it removed by lockd itself (which can
  489.  * then sleep on the file semaphore without disrupting e.g. the nfs client).
  490.  */
  491. static void
  492. nlmsvc_grant_callback(struct rpc_task *task)
  493. {
  494. struct nlm_rqst *call = (struct nlm_rqst *) task->tk_calldata;
  495. struct nlm_block *block;
  496. unsigned long timeout;
  497. dprintk("lockd: GRANT_MSG RPC callbackn");
  498. dprintk("callback: looking for cookie %x n", 
  499. *(unsigned int *)(call->a_args.cookie.data));
  500. if (!(block = nlmsvc_find_block(&call->a_args.cookie))) {
  501. dprintk("lockd: no block for cookie %xn", *(u32 *)(call->a_args.cookie.data));
  502. return;
  503. }
  504. /* Technically, we should down the file semaphore here. Since we
  505.  * move the block towards the head of the queue only, no harm
  506.  * can be done, though. */
  507. if (task->tk_status < 0) {
  508. /* RPC error: Re-insert for retransmission */
  509. timeout = 10 * HZ;
  510. } else if (block->b_done) {
  511. /* Block already removed, kill it for real */
  512. timeout = 0;
  513. } else {
  514. /* Call was successful, now wait for client callback */
  515. timeout = 60 * HZ;
  516. }
  517. nlmsvc_insert_block(block, timeout);
  518. svc_wake_up(block->b_daemon);
  519. block->b_incall = 0;
  520. nlm_release_host(call->a_host);
  521. }
  522. /*
  523.  * We received a GRANT_RES callback. Try to find the corresponding
  524.  * block.
  525.  */
  526. void
  527. nlmsvc_grant_reply(struct nlm_cookie *cookie, u32 status)
  528. {
  529. struct nlm_block *block;
  530. struct nlm_file *file;
  531. if (!(block = nlmsvc_find_block(cookie)))
  532. return;
  533. file = block->b_file;
  534. file->f_count++;
  535. down(&file->f_sema);
  536. if ((block = nlmsvc_find_block(cookie)) != NULL) {
  537. if (status == NLM_LCK_DENIED_GRACE_PERIOD) {
  538. /* Try again in a couple of seconds */
  539. nlmsvc_insert_block(block, 10 * HZ);
  540. block = NULL;
  541. } else {
  542. /* Lock is now held by client, or has been rejected.
  543.  * In both cases, the block should be removed. */
  544. file->f_count++;
  545. up(&file->f_sema);
  546. if (status == NLM_LCK_GRANTED)
  547. nlmsvc_delete_block(block, 0);
  548. else
  549. nlmsvc_delete_block(block, 1);
  550. }
  551. }
  552. if (!block)
  553. up(&file->f_sema);
  554. nlm_release_file(file);
  555. }
  556. /*
  557.  * Retry all blocked locks that have been notified. This is where lockd
  558.  * picks up locks that can be granted, or grant notifications that must
  559.  * be retransmitted.
  560.  */
  561. unsigned long
  562. nlmsvc_retry_blocked(void)
  563. {
  564. struct nlm_block *block;
  565. dprintk("nlmsvc_retry_blocked(%p, when=%ld)n",
  566. nlm_blocked,
  567. nlm_blocked? nlm_blocked->b_when : 0);
  568. while ((block = nlm_blocked)) {
  569. if (block->b_when == NLM_NEVER)
  570. break;
  571.         if (time_after(block->b_when,jiffies))
  572. break;
  573. dprintk("nlmsvc_retry_blocked(%p, when=%ld, done=%d)n",
  574. block, block->b_when, block->b_done);
  575. if (block->b_done)
  576. nlmsvc_delete_block(block, 0);
  577. else
  578. nlmsvc_grant_blocked(block);
  579. }
  580. if ((block = nlm_blocked) && block->b_when != NLM_NEVER)
  581. return (block->b_when - jiffies);
  582. return MAX_SCHEDULE_TIMEOUT;
  583. }