Message ID | 20211103121607.27490-1-guozhengkui@vivo.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 96d0c9be432dfd4908e96dde7cab860368a348ab |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | devlink: fix flexible_array.cocci warning | expand |
Hello: This patch was applied to netdev/net.git (master) by Jakub Kicinski <kuba@kernel.org>: On Wed, 3 Nov 2021 20:16:06 +0800 you wrote: > Fix following coccicheck warning: > ./net/core/devlink.c:69:6-10: WARNING use flexible-array member instead > > Signed-off-by: Guo Zhengkui <guozhengkui@vivo.com> > --- > net/core/devlink.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - devlink: fix flexible_array.cocci warning https://git.kernel.org/netdev/net/c/96d0c9be432d You are awesome, thank you!
diff --git a/net/core/devlink.c b/net/core/devlink.c index 6b5ee862429e..5ba4f9434acd 100644 --- a/net/core/devlink.c +++ b/net/core/devlink.c @@ -66,7 +66,7 @@ struct devlink { u8 reload_failed:1; refcount_t refcount; struct completion comp; - char priv[0] __aligned(NETDEV_ALIGN); + char priv[] __aligned(NETDEV_ALIGN); }; void *devlink_priv(struct devlink *devlink)
Fix following coccicheck warning: ./net/core/devlink.c:69:6-10: WARNING use flexible-array member instead Signed-off-by: Guo Zhengkui <guozhengkui@vivo.com> --- net/core/devlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)