File tree Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ struct bpf_insn {
73
73
/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry */
74
74
struct bpf_lpm_trie_key {
75
75
__u32 prefixlen ; /* up to 32 for AF_INET, 128 for AF_INET6 */
76
- __u8 data []; /* Arbitrary size */
76
+ __u8 data [0 ]; /* Arbitrary size */
77
77
};
78
78
79
79
struct bpf_cgroup_storage_key {
Original file line number Diff line number Diff line change @@ -45,13 +45,13 @@ struct dlm_lock_params {
45
45
void __user * bastaddr ;
46
46
struct dlm_lksb __user * lksb ;
47
47
char lvb [DLM_USER_LVB_LEN ];
48
- char name [];
48
+ char name [0 ];
49
49
};
50
50
51
51
struct dlm_lspace_params {
52
52
__u32 flags ;
53
53
__u32 minor ;
54
- char name [];
54
+ char name [0 ];
55
55
};
56
56
57
57
struct dlm_purge_params {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ struct fiemap {
34
34
__u32 fm_mapped_extents ;/* number of extents that were mapped (out) */
35
35
__u32 fm_extent_count ; /* size of fm_extents array (in) */
36
36
__u32 fm_reserved ;
37
- struct fiemap_extent fm_extents []; /* array of mapped extents (out) */
37
+ struct fiemap_extent fm_extents [0 ]; /* array of mapped extents (out) */
38
38
};
39
39
40
40
#define FIEMAP_MAX_OFFSET (~0ULL)
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ struct arc_rfc1201 {
60
60
__u8 proto ; /* protocol ID field - varies */
61
61
__u8 split_flag ; /* for use with split packets */
62
62
__be16 sequence ; /* sequence number */
63
- __u8 payload []; /* space remaining in packet (504 bytes)*/
63
+ __u8 payload [0 ]; /* space remaining in packet (504 bytes)*/
64
64
};
65
65
#define RFC1201_HDR_SIZE 4
66
66
@@ -69,7 +69,7 @@ struct arc_rfc1201 {
69
69
*/
70
70
struct arc_rfc1051 {
71
71
__u8 proto ; /* ARC_P_RFC1051_ARP/RFC1051_IP */
72
- __u8 payload []; /* 507 bytes */
72
+ __u8 payload [0 ]; /* 507 bytes */
73
73
};
74
74
#define RFC1051_HDR_SIZE 1
75
75
@@ -80,7 +80,7 @@ struct arc_rfc1051 {
80
80
struct arc_eth_encap {
81
81
__u8 proto ; /* Always ARC_P_ETHER */
82
82
struct ethhdr eth ; /* standard ethernet header (yuck!) */
83
- __u8 payload []; /* 493 bytes */
83
+ __u8 payload [0 ]; /* 493 bytes */
84
84
};
85
85
#define ETH_ENCAP_HDR_SIZE 14
86
86
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ struct mmc_ioc_cmd {
57
57
*/
58
58
struct mmc_ioc_multi_cmd {
59
59
__u64 num_of_cmds ;
60
- struct mmc_ioc_cmd cmds [];
60
+ struct mmc_ioc_cmd cmds [0 ];
61
61
};
62
62
63
63
#define MMC_IOC_CMD _IOWR(MMC_BLOCK_MAJOR, 0, struct mmc_ioc_cmd)
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ struct net_dm_config_entry {
29
29
30
30
struct net_dm_config_msg {
31
31
__u32 entries ;
32
- struct net_dm_config_entry options [];
32
+ struct net_dm_config_entry options [0 ];
33
33
};
34
34
35
35
struct net_dm_alert_msg {
36
36
__u32 entries ;
37
- struct net_dm_drop_point points [];
37
+ struct net_dm_drop_point points [0 ];
38
38
};
39
39
40
40
struct net_dm_user_msg {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ struct ebt_mac_wormhash_tuple {
40
40
struct ebt_mac_wormhash {
41
41
int table [257 ];
42
42
int poolsize ;
43
- struct ebt_mac_wormhash_tuple pool [];
43
+ struct ebt_mac_wormhash_tuple pool [0 ];
44
44
};
45
45
46
46
#define ebt_mac_wormhash_size (x ) ((x) ? sizeof(struct ebt_mac_wormhash) \
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ struct fc_bsg_host_vendor {
209
209
__u64 vendor_id ;
210
210
211
211
/* start of vendor command area */
212
- __u32 vendor_cmd [];
212
+ __u32 vendor_cmd [0 ];
213
213
};
214
214
215
215
/* Response:
You can’t perform that action at this time.
0 commit comments