From: Markus Elfring <[email protected]>
Date: Fri, 25 Aug 2017 21:34:44 +0200

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <[email protected]>
---
 drivers/scsi/sd.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index bea36adeee17..1f15c31e5a8a 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -3067,11 +3067,8 @@ static int sd_revalidate_disk(struct gendisk *disk)
                goto out;
 
        buffer = kmalloc(SD_BUF_SIZE, GFP_KERNEL);
-       if (!buffer) {
-               sd_printk(KERN_WARNING, sdkp, "sd_revalidate_disk: Memory "
-                         "allocation failure.\n");
+       if (!buffer)
                goto out;
-       }
 
        sd_spinup_disk(sdkp);
 
-- 
2.14.0

Reply via email to