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