diff options
author | Marc Eshel <eshel@almaden.ibm.com> | 2006-12-05 23:48:10 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2007-05-06 20:38:50 -0400 |
commit | f812048020282fdfa9b72a6cf539c33b6df1fd07 (patch) | |
tree | e4f281027da1f0e907e68b2e26ae5b773a967047 /fs/lockd | |
parent | 5ea0d75037b93baa453b4d326c6319968fe91cea (diff) |
lockd: always preallocate block in nlmsvc_lock()
Normally we could skip ever having to allocate a block in the case where
the client asks for a non-blocking lock, or asks for a blocking lock that
succeeds immediately.
However we're going to want to always look up a block first in order to
check whether we're revisiting a deferred lock call, and to be prepared to
handle the case where the filesystem returns -EINPROGRESS--in that case we
want to make sure the lock we've given the filesystem is the one embedded
in the block that we'll use to track the deferred request.
Signed-off-by: Marc Eshel <eshel@almaden.ibm.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/svclock.c | 34 |
1 files changed, 11 insertions, 23 deletions
diff --git a/fs/lockd/svclock.c b/fs/lockd/svclock.c index b7a8174fd1dc..0d7398e3804f 100644 --- a/fs/lockd/svclock.c +++ b/fs/lockd/svclock.c | |||
@@ -365,7 +365,7 @@ __be32 | |||
365 | nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file, | 365 | nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file, |
366 | struct nlm_lock *lock, int wait, struct nlm_cookie *cookie) | 366 | struct nlm_lock *lock, int wait, struct nlm_cookie *cookie) |
367 | { | 367 | { |
368 | struct nlm_block *block, *newblock = NULL; | 368 | struct nlm_block *block = NULL; |
369 | int error; | 369 | int error; |
370 | __be32 ret; | 370 | __be32 ret; |
371 | 371 | ||
@@ -378,17 +378,20 @@ nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file, | |||
378 | wait); | 378 | wait); |
379 | 379 | ||
380 | 380 | ||
381 | lock->fl.fl_flags &= ~FL_SLEEP; | ||
382 | again: | ||
383 | /* Lock file against concurrent access */ | 381 | /* Lock file against concurrent access */ |
384 | mutex_lock(&file->f_mutex); | 382 | mutex_lock(&file->f_mutex); |
385 | /* Get existing block (in case client is busy-waiting) */ | 383 | /* Get existing block (in case client is busy-waiting) |
384 | * or create new block | ||
385 | */ | ||
386 | block = nlmsvc_lookup_block(file, lock); | 386 | block = nlmsvc_lookup_block(file, lock); |
387 | if (block == NULL) { | 387 | if (block == NULL) { |
388 | if (newblock != NULL) | 388 | block = nlmsvc_create_block(rqstp, file, lock, cookie); |
389 | lock = &newblock->b_call->a_args.lock; | 389 | ret = nlm_lck_denied_nolocks; |
390 | } else | 390 | if (block == NULL) |
391 | goto out; | ||
391 | lock = &block->b_call->a_args.lock; | 392 | lock = &block->b_call->a_args.lock; |
393 | } else | ||
394 | lock->fl.fl_flags &= ~FL_SLEEP; | ||
392 | 395 | ||
393 | error = posix_lock_file(file->f_file, &lock->fl, NULL); | 396 | error = posix_lock_file(file->f_file, &lock->fl, NULL); |
394 | lock->fl.fl_flags &= ~FL_SLEEP; | 397 | lock->fl.fl_flags &= ~FL_SLEEP; |
@@ -414,26 +417,11 @@ again: | |||
414 | goto out; | 417 | goto out; |
415 | 418 | ||
416 | ret = nlm_lck_blocked; | 419 | ret = nlm_lck_blocked; |
417 | if (block != NULL) | ||
418 | goto out; | ||
419 | |||
420 | /* If we don't have a block, create and initialize it. Then | ||
421 | * retry because we may have slept in kmalloc. */ | ||
422 | /* We have to release f_mutex as nlmsvc_create_block may try to | ||
423 | * to claim it while doing host garbage collection */ | ||
424 | if (newblock == NULL) { | ||
425 | mutex_unlock(&file->f_mutex); | ||
426 | dprintk("lockd: blocking on this lock (allocating).\n"); | ||
427 | if (!(newblock = nlmsvc_create_block(rqstp, file, lock, cookie))) | ||
428 | return nlm_lck_denied_nolocks; | ||
429 | goto again; | ||
430 | } | ||
431 | 420 | ||
432 | /* Append to list of blocked */ | 421 | /* Append to list of blocked */ |
433 | nlmsvc_insert_block(newblock, NLM_NEVER); | 422 | nlmsvc_insert_block(block, NLM_NEVER); |
434 | out: | 423 | out: |
435 | mutex_unlock(&file->f_mutex); | 424 | mutex_unlock(&file->f_mutex); |
436 | nlmsvc_release_block(newblock); | ||
437 | nlmsvc_release_block(block); | 425 | nlmsvc_release_block(block); |
438 | dprintk("lockd: nlmsvc_lock returned %u\n", ret); | 426 | dprintk("lockd: nlmsvc_lock returned %u\n", ret); |
439 | return ret; | 427 | return ret; |