From: Gustavo A. R. Silva Date: Thu, 22 Sep 2022 17:00:46 +0000 (-0500) Subject: scsi: hptiop: Replace one-element array with flexible-array member in struct hpt_iop_... X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d20796627fec15e79727b147707c632b0e2ca162;p=linux.git scsi: hptiop: Replace one-element array with flexible-array member in struct hpt_iop_request_ioctl_command() One-element arrays are deprecated, and we are replacing them with flexible array members instead. So, replace one-element array with flexible-array member in struct hpt_iop_request_ioctl_command. Link: https://github.com/KSPP/linux/issues/79 Link: https://github.com/KSPP/linux/issues/205 Link: https://lore.kernel.org/r/YyyUvuId7dAZadej@work Reviewed-by: Kees Cook Signed-off-by: Gustavo A. R. Silva Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/hptiop.h b/drivers/scsi/hptiop.h index ef2f2aca598cf..394ef6aa469e8 100644 --- a/drivers/scsi/hptiop.h +++ b/drivers/scsi/hptiop.h @@ -237,7 +237,7 @@ struct hpt_iop_request_ioctl_command { __le32 inbuf_size; __le32 outbuf_size; __le32 bytes_returned; - u8 buf[1]; + u8 buf[]; /* out data should be put at buf[(inbuf_size+3)&~3] */ };