diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2009-11-12 13:49:50 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-11-13 02:45:53 -0500 |
commit | d06dfbd236795acbb67e22e51bb8af12e953ced3 (patch) | |
tree | fde4de5a10198a384d2f012af8806101ab8f8ac2 /drivers/block/cciss.c | |
parent | b0e15f6db1110319cb2e747e59e1200450a5ba3e (diff) |
cciss: Remove unnecessary check in scan_thread
cciss: Remove unnecessary check in scan_thread
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 23c2910aa7bb..42eaddb54380 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -3386,13 +3386,11 @@ static int scan_thread(void *data) | |||
3386 | h->busy_scanning = 1; | 3386 | h->busy_scanning = 1; |
3387 | mutex_unlock(&scan_mutex); | 3387 | mutex_unlock(&scan_mutex); |
3388 | 3388 | ||
3389 | if (h) { | 3389 | rebuild_lun_table(h, 0, 0); |
3390 | rebuild_lun_table(h, 0, 0); | 3390 | complete_all(&h->scan_wait); |
3391 | complete_all(&h->scan_wait); | 3391 | mutex_lock(&scan_mutex); |
3392 | mutex_lock(&scan_mutex); | 3392 | h->busy_scanning = 0; |
3393 | h->busy_scanning = 0; | 3393 | mutex_unlock(&scan_mutex); |
3394 | mutex_unlock(&scan_mutex); | ||
3395 | } | ||
3396 | } | 3394 | } |
3397 | } | 3395 | } |
3398 | 3396 | ||