block: scsi_ioctl: Avoid the use of one-element arrays
authorGustavo A. R. Silva <gustavoars@kernel.org>
Fri, 2 Oct 2020 23:10:33 +0000 (18:10 -0500)
committerJens Axboe <axboe@kernel.dk>
Fri, 2 Oct 2020 23:58:52 +0000 (17:58 -0600)
commitf5ace5ef37b1e1de49882248656f35c45e041585
tree196851df93305c1d8483f09437dd4eb36688bee7
parent99ba84c5de1e2f5b2b78e9e3bc89e50ec9bc0f29
block: scsi_ioctl: Avoid the use of one-element arrays

One-element arrays are being deprecated[1]. Replace the one-element array
with a simple object of type compat_caddr_t: 'compat_caddr_t unused'[2],
once it seems this field is actually never used.

Also, update struct cdrom_generic_command in UAPI by adding an
anonimous union to avoid using the one-element array _reserved_.

[1] https://www.kernel.org/doc/html/v5.9-rc1/process/deprecated.html#zero-length-and-one-element-arrays
[2] https://github.com/KSPP/linux/issues/86

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/lkml/5f76f5d0.qJ4t%2FHWuRzSW7bTa%25lkp@intel.com/
Build-tested-by: kernel test robot <lkp@intel.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/scsi_ioctl.c
include/uapi/linux/cdrom.h