[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1590714163-15966-1-git-send-email-wang.yi59@zte.com.cn>
Date: Fri, 29 May 2020 09:02:43 +0800
From: Yi Wang <wang.yi59@....com.cn>
To: linuxdrivers@...otech.com
Cc: jejb@...ux.ibm.com, martin.petersen@...cle.com,
linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org,
xue.zhihong@....com.cn, wang.yi59@....com.cn,
wang.liang82@....com.cn, Liao Pingfang <liao.pingfang@....com.cn>
Subject: [PATCH] scsi: esas2r: Replace kzalloc with kmalloc in the log message
From: Liao Pingfang <liao.pingfang@....com.cn>
Use kmalloc instead of kzalloc in the log message according to
the previous kmalloc() call.
Signed-off-by: Liao Pingfang <liao.pingfang@....com.cn>
---
drivers/scsi/esas2r/esas2r_main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/esas2r/esas2r_main.c b/drivers/scsi/esas2r/esas2r_main.c
index 7b49e2e..2cdc4ea 100644
--- a/drivers/scsi/esas2r/esas2r_main.c
+++ b/drivers/scsi/esas2r/esas2r_main.c
@@ -198,8 +198,8 @@ static ssize_t write_hw(struct file *file, struct kobject *kobj,
GFP_KERNEL);
if (a->local_atto_ioctl == NULL) {
esas2r_log(ESAS2R_LOG_WARN,
- "write_hw kzalloc failed for %zu bytes",
- sizeof(struct atto_ioctl));
+ "%s kmalloc failed for %zu bytes",
+ __func__, sizeof(struct atto_ioctl));
return -ENOMEM;
}
}
--
2.9.5
Powered by blists - more mailing lists