diff options
author | Behan Webster <behanw@converseincode.com> | 2014-09-05 19:03:34 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-09-08 13:07:56 -0400 |
commit | 9f06a8d623b2c3aea09292b844e329fbfb401231 (patch) | |
tree | e70c1d741f2d74426bd56fb26903e25a3b40042b /net/bluetooth | |
parent | b28b4943660f4e36f118b751ec606c103ba6b1cc (diff) |
Bluetooth: LLVMLinux: Remove VLAIS from bluetooth/amp.c
Replaced the use of a Variable Length Array In Struct (VLAIS) with a C99
compliant equivalent. This patch allocates the appropriate amount of memory
using an char array.
The new code can be compiled with both gcc and clang.
struct shash_desc contains a flexible array member member ctx declared with
CRYPTO_MINALIGN_ATTR, so sizeof(struct shash_desc) aligns the beginning
of the array declared after struct shash_desc with long long.
No trailing padding is required because it is not a struct type that can
be used in an array.
The CRYPTO_MINALIGN_ATTR is required so that desc is aligned with long long
as would be the case for a struct containing a member with
CRYPTO_MINALIGN_ATTR.
Signed-off-by: Behan Webster <behanw@converseincode.com>
Signed-off-by: Mark Charlebois <charlebm@gmail.com>
Signed-off-by: Jan-Simon Möller <dl9pf@gmx.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/amp.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/net/bluetooth/amp.c b/net/bluetooth/amp.c index 016cdb66df6c..2640d78f30b8 100644 --- a/net/bluetooth/amp.c +++ b/net/bluetooth/amp.c | |||
@@ -149,15 +149,14 @@ static int hmac_sha256(u8 *key, u8 ksize, char *plaintext, u8 psize, u8 *output) | |||
149 | if (ret) { | 149 | if (ret) { |
150 | BT_DBG("crypto_ahash_setkey failed: err %d", ret); | 150 | BT_DBG("crypto_ahash_setkey failed: err %d", ret); |
151 | } else { | 151 | } else { |
152 | struct { | 152 | char desc[sizeof(struct shash_desc) + |
153 | struct shash_desc shash; | 153 | crypto_shash_descsize(tfm)] CRYPTO_MINALIGN_ATTR; |
154 | char ctx[crypto_shash_descsize(tfm)]; | 154 | struct shash_desc *shash = (struct shash_desc *)desc; |
155 | } desc; | ||
156 | 155 | ||
157 | desc.shash.tfm = tfm; | 156 | shash->tfm = tfm; |
158 | desc.shash.flags = CRYPTO_TFM_REQ_MAY_SLEEP; | 157 | shash->flags = CRYPTO_TFM_REQ_MAY_SLEEP; |
159 | 158 | ||
160 | ret = crypto_shash_digest(&desc.shash, plaintext, psize, | 159 | ret = crypto_shash_digest(shash, plaintext, psize, |
161 | output); | 160 | output); |
162 | } | 161 | } |
163 | 162 | ||