isdn: use designated initializers
Prepare to mark sensitive kernel structures for randomization by making sure they're using designated initializers. These were identified during allyesconfig builds of x86, arm, and arm64, with most initializer fixes extracted from grsecurity. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9751362a4f
commit
ebf12f1320
|
@ -80,9 +80,9 @@ static int isdn_concap_dl_disconn_req(struct concap_proto *concap)
|
|||
}
|
||||
|
||||
struct concap_device_ops isdn_concap_reliable_dl_dops = {
|
||||
&isdn_concap_dl_data_req,
|
||||
&isdn_concap_dl_connect_req,
|
||||
&isdn_concap_dl_disconn_req
|
||||
.data_req = &isdn_concap_dl_data_req,
|
||||
.connect_req = &isdn_concap_dl_connect_req,
|
||||
.disconn_req = &isdn_concap_dl_disconn_req
|
||||
};
|
||||
|
||||
/* The following should better go into a dedicated source file such that
|
||||
|
|
|
@ -53,14 +53,14 @@ static int isdn_x25iface_disconn_ind(struct concap_proto *);
|
|||
|
||||
|
||||
static struct concap_proto_ops ix25_pops = {
|
||||
&isdn_x25iface_proto_new,
|
||||
&isdn_x25iface_proto_del,
|
||||
&isdn_x25iface_proto_restart,
|
||||
&isdn_x25iface_proto_close,
|
||||
&isdn_x25iface_xmit,
|
||||
&isdn_x25iface_receive,
|
||||
&isdn_x25iface_connect_ind,
|
||||
&isdn_x25iface_disconn_ind
|
||||
.proto_new = &isdn_x25iface_proto_new,
|
||||
.proto_del = &isdn_x25iface_proto_del,
|
||||
.restart = &isdn_x25iface_proto_restart,
|
||||
.close = &isdn_x25iface_proto_close,
|
||||
.encap_and_xmit = &isdn_x25iface_xmit,
|
||||
.data_ind = &isdn_x25iface_receive,
|
||||
.connect_ind = &isdn_x25iface_connect_ind,
|
||||
.disconn_ind = &isdn_x25iface_disconn_ind
|
||||
};
|
||||
|
||||
/* error message helper function */
|
||||
|
|
Loading…
Reference in New Issue