forked from mirrors/linux
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].
This code was transformed with the help of Coccinelle:
(next-20220214$ spatch --jobs $(getconf _NPROCESSORS_ONLN) --sp-file script.cocci --include-headers --dir . > output.patch)
@@
identifier S, member, array;
type T1, T2;
@@
struct S {
...
T1 member;
T2 array[
- 0
];
};
UAPI and wireless changes were intentionally excluded from this patch
and will be sent out separately.
[1] https://en.wikipedia.org/wiki/Flexible_array_member
[2] https://www.kernel.org/doc/html/v5.16/process/deprecated.html#zero-length-and-one-element-arrays
Link: https://github.com/KSPP/linux/issues/78
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
36 lines
753 B
C
36 lines
753 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Greybus Module code
|
|
*
|
|
* Copyright 2016 Google Inc.
|
|
* Copyright 2016 Linaro Ltd.
|
|
*/
|
|
|
|
#ifndef __MODULE_H
|
|
#define __MODULE_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/device.h>
|
|
|
|
struct gb_module {
|
|
struct device dev;
|
|
struct gb_host_device *hd;
|
|
|
|
struct list_head hd_node;
|
|
|
|
u8 module_id;
|
|
size_t num_interfaces;
|
|
|
|
bool disconnected;
|
|
|
|
struct gb_interface *interfaces[];
|
|
};
|
|
#define to_gb_module(d) container_of(d, struct gb_module, dev)
|
|
|
|
struct gb_module *gb_module_create(struct gb_host_device *hd, u8 module_id,
|
|
size_t num_interfaces);
|
|
int gb_module_add(struct gb_module *module);
|
|
void gb_module_del(struct gb_module *module);
|
|
void gb_module_put(struct gb_module *module);
|
|
|
|
#endif /* __MODULE_H */
|