mbox series

[0/3,next] scsi: smartpqi: Replace one-element arrays with flexible-array members

Message ID cover.1663816572.git.gustavoars@kernel.org
Headers show
Series scsi: smartpqi: Replace one-element arrays with flexible-array members | expand

Message

Gustavo A. R. Silva Sept. 22, 2022, 4:26 a.m. UTC
Hi!

This series aims to replace one-element arrays with flexible-array
members in drivers/scsi/smartpqi/smartpqi.h

This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
routines on memcpy() and help us make progress towards globally
enabling -fstrict-flex-arrays=3 [1].

Link: https://en.wikipedia.org/wiki/Flexible_array_member
Link: https://www.kernel.org/doc/html/v5.10/process/deprecated.html#zero-length-and-one-element-arrays
Link: https://github.com/KSPP/linux/issues/79
Link: https://github.com/KSPP/linux/issues/109
Link: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101836 [1]

Gustavo A. R. Silva (3):
  scsi: smartpqi: Replace one-element array with flexible-array member
  scsi: smartpqi: Replace one-element arrays with flexible-array members
  scsi: smartpqi: Use struct_size() helper in pqi_report_phys_luns()

 drivers/scsi/smartpqi/smartpqi.h      |  6 +++---
 drivers/scsi/smartpqi/smartpqi_init.c | 12 ++++--------
 2 files changed, 7 insertions(+), 11 deletions(-)

Comments

Gustavo A. R. Silva Jan. 31, 2023, 8:14 p.m. UTC | #1
Hi all,

Friendly ping: who can review/take this, please? :)

Thanks
--
Gustavo

On 9/21/22 23:26, Gustavo A. R. Silva wrote:
> Hi!
> 
> This series aims to replace one-element arrays with flexible-array
> members in drivers/scsi/smartpqi/smartpqi.h
> 
> This helps with the ongoing efforts to tighten the FORTIFY_SOURCE
> routines on memcpy() and help us make progress towards globally
> enabling -fstrict-flex-arrays=3 [1].
> 
> Link: https://en.wikipedia.org/wiki/Flexible_array_member
> Link: https://www.kernel.org/doc/html/v5.10/process/deprecated.html#zero-length-and-one-element-arrays
> Link: https://github.com/KSPP/linux/issues/79
> Link: https://github.com/KSPP/linux/issues/109
> Link: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101836 [1]
> 
> Gustavo A. R. Silva (3):
>    scsi: smartpqi: Replace one-element array with flexible-array member
>    scsi: smartpqi: Replace one-element arrays with flexible-array members
>    scsi: smartpqi: Use struct_size() helper in pqi_report_phys_luns()
> 
>   drivers/scsi/smartpqi/smartpqi.h      |  6 +++---
>   drivers/scsi/smartpqi/smartpqi_init.c | 12 ++++--------
>   2 files changed, 7 insertions(+), 11 deletions(-)
>