summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnd Bergmann2017-07-14 14:06:58 +0200
committerMartin K. Petersen2017-08-07 20:04:01 +0200
commit514e59c1195f2634dab025d952242f5e69e052c7 (patch)
tree9d19d825219e5788195ac1b37033ba664bd296be
parentscsi: gdth: avoid buffer overflow warning (diff)
downloadkernel-qcow2-linux-514e59c1195f2634dab025d952242f5e69e052c7.tar.gz
kernel-qcow2-linux-514e59c1195f2634dab025d952242f5e69e052c7.tar.xz
kernel-qcow2-linux-514e59c1195f2634dab025d952242f5e69e052c7.zip
scsi: fnic: fix format string overflow warning
The MSI interrupt name can require 11 bytes in addition to the device name, for a total of 23 bytes: drivers/scsi/fnic/fnic_isr.c: In function 'fnic_request_intr': drivers/scsi/fnic/fnic_isr.c:192:4: error: '-fcs-rq' directive writing 7 bytes into a region of size between 5 and 16 [-Werror=format-overflow=] "%.11s-fcs-rq", fnic->name); drivers/scsi/fnic/fnic_isr.c:206:3: note: 'sprintf' output between 12 and 23 bytes into a destination of size 16 sprintf(fnic->msix[FNIC_MSIX_ERR_NOTIFY].devname, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "%.11s-err-notify", fnic->name); This extends the buffer to fit any possible value. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/fnic/fnic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/fnic/fnic.h b/drivers/scsi/fnic/fnic.h
index 67aab965c0f4..d094ba59ed15 100644
--- a/drivers/scsi/fnic/fnic.h
+++ b/drivers/scsi/fnic/fnic.h
@@ -180,7 +180,7 @@ enum fnic_msix_intr_index {
struct fnic_msix_entry {
int requested;
- char devname[IFNAMSIZ];
+ char devname[IFNAMSIZ + 11];
irqreturn_t (*isr)(int, void *);
void *devid;
};