diff options
author | Kees Cook <[email protected]> | 2024-07-11 10:48:23 -0700 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2024-08-02 21:28:25 -0400 |
commit | 575b9be63684600e7e02517f0b647e5cb759120c (patch) | |
tree | 3d0331cc922f2b2181571f3175f194435cdd21b2 /lib/crypto/mpi/mpi-sub-ui.c | |
parent | 29b4a49750776925ea48ef440da6aa75828913db (diff) |
scsi: aacraid: union aac_init: Replace 1-element array with flexible array
Replace the deprecated[1] use of a 1-element array in union aac_init with a
modern flexible array.
Additionally add __counted_by annotation since rrq is only ever accessed
after rr_queue_count has been set (with the same value used to control the
loop):
init->r8.rr_queue_count = cpu_to_le32(dev->max_msix);
...
for (i = 0; i < dev->max_msix; i++) {
addr = (u64)dev->host_rrq_pa + dev->vector_cap * i *
sizeof(u32);
init->r8.rrq[i].host_addr_high = cpu_to_le32(
upper_32_bits(addr));
No binary differences are present after this conversion.
Link: https://github.com/KSPP/linux/issues/79 [1]
Signed-off-by: Kees Cook <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
Diffstat (limited to 'lib/crypto/mpi/mpi-sub-ui.c')
0 files changed, 0 insertions, 0 deletions