diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2009-11-12 12:49:50 -0600 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-11-13 08:45:53 +0100 |
commit | d06dfbd236795acbb67e22e51bb8af12e953ced3 (patch) | |
tree | fde4de5a10198a384d2f012af8806101ab8f8ac2 | |
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>
-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 23c2910aa7b..42eaddb5438 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -3386,13 +3386,11 @@ static int scan_thread(void *data) h->busy_scanning = 1; mutex_unlock(&scan_mutex); - if (h) { - rebuild_lun_table(h, 0, 0); - complete_all(&h->scan_wait); - mutex_lock(&scan_mutex); - h->busy_scanning = 0; - mutex_unlock(&scan_mutex); - } + rebuild_lun_table(h, 0, 0); + complete_all(&h->scan_wait); + mutex_lock(&scan_mutex); + h->busy_scanning = 0; + mutex_unlock(&scan_mutex); } } |