]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
scsi: isci: avoid array subscript warning
authorArnd Bergmann <arnd@arndb.de>
Fri, 18 Nov 2016 16:14:01 +0000 (17:14 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 2 Sep 2017 05:05:44 +0000 (07:05 +0200)
commit8df251426dae53a74dd6b2d3f02503a2b270c2ef
treef4721a6a6b85aef1f1e71e6f926a243d501eedf5
parent2713f9f39b8fd713d914c0051b8dc5acf1bc2c6d
scsi: isci: avoid array subscript warning

commit 5cfa2a3c7342bd0b50716c8bb32ee491af43c785 upstream.

I'm getting a new warning with gcc-7:

isci/remote_node_context.c: In function 'sci_remote_node_context_destruct':
isci/remote_node_context.c:69:16: error: array subscript is above array bounds [-Werror=array-bounds]

This is odd, since we clearly cover all values for enum
scis_sds_remote_node_context_states here. Anyway, checking for an array
overflow can't harm and it makes the warning go away.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/scsi/isci/remote_node_context.c