aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavoars@kernel.org>2020-05-28 09:35:11 -0500
committerGustavo A. R. Silva <gustavoars@kernel.org>2020-06-15 23:08:31 -0500
commitd6562f1ca877e0c2b020be0a66d59592e9f37f24 (patch)
treedd5691fb03f8dead9d86fcf9fa31a1debb01e1f9 /include
parentcan: peak_canfd: Replace zero-length array with flexible-array (diff)
downloadlinux-dev-d6562f1ca877e0c2b020be0a66d59592e9f37f24.tar.xz
linux-dev-d6562f1ca877e0c2b020be0a66d59592e9f37f24.zip
can: Replace zero-length array with flexible-array
There is a regular need in the kernel to provide a way to declare having a dynamically sized set of trailing elements in a structure. Kernel code should always use “flexible array members”[1] for these cases. The older style of one-element or zero-length arrays should no longer be used[2]. [1] https://en.wikipedia.org/wiki/Flexible_array_member [2] https://github.com/KSPP/linux/issues/21 Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/can/skb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/can/skb.h b/include/linux/can/skb.h
index a954def26c0d..900b9f4e0605 100644
--- a/include/linux/can/skb.h
+++ b/include/linux/can/skb.h
@@ -34,7 +34,7 @@
struct can_skb_priv {
int ifindex;
int skbcnt;
- struct can_frame cf[0];
+ struct can_frame cf[];
};
static inline struct can_skb_priv *can_skb_prv(struct sk_buff *skb)