crypto: not use vec api with opt_data[VNET_CRYPTO_N_OP_IDS] 11/23511/2
authorLijian Zhang <Lijian.Zhang@arm.com>
Fri, 27 Sep 2019 08:25:35 +0000 (16:25 +0800)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Thu, 28 Nov 2019 09:46:03 +0000 (09:46 +0000)
commit49cf46e0d0847796aecf7b62db961da416a5c9d7
tree433d0c38720e28634c8990e1bab0e06354056df7
parentd2bff078647cd6382e25fe737bd93e0d36234240
crypto: not use vec api with opt_data[VNET_CRYPTO_N_OP_IDS]

opt_data is defined as a array, while in some code, e.g., function
 vnet_crypto_get_op_type, it's used as vec.
vec api is not applicable to static arraies.

src/vnet/crypto/crypto.h:234:70: error: address of array 'cm->opt_data' will always evaluate to 'true' [-Werror,-Wpointer-bool-conversion]
  vnet_crypto_op_data_t *od = ({ do { if ((0 > 0) && ! ((id) < ((cm->opt_data) ? (((vec_header_t *) (cm->opt_data) - 1)->len) : 0)))

Type: fix

Change-Id: I0b6754406e4216ca975bc1da4b5d4ce293a9bb45
Signed-off-by: Lijian Zhang <Lijian.Zhang@arm.com>
(cherry picked from commit b15d796dbf1da6a229df4e10a3a2bdd700f0354e)
src/vnet/crypto/cli.c
src/vnet/crypto/crypto.c
src/vnet/crypto/crypto.h