Skip to content

Commit

Permalink
VSOCK: constify vmci_transport_notify_ops structures
Browse files Browse the repository at this point in the history
The vmci_transport_notify_ops structures are never modified, so declare
them as const.

Done with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Julia Lawall authored and David S. Miller committed Nov 23, 2015
1 parent 4dd191b commit 3b22dae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion net/vmw_vsock/vmci_transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ struct vmci_transport {
u64 queue_pair_max_size;
u32 detach_sub_id;
union vmci_transport_notify notify;
struct vmci_transport_notify_ops *notify_ops;
const struct vmci_transport_notify_ops *notify_ops;
struct list_head elem;
struct sock *sk;
spinlock_t lock; /* protects sk. */
Expand Down
2 changes: 1 addition & 1 deletion net/vmw_vsock/vmci_transport_notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ static void vmci_transport_notify_pkt_process_negotiate(struct sock *sk)
}

/* Socket control packet based operations. */
struct vmci_transport_notify_ops vmci_transport_notify_pkt_ops = {
const struct vmci_transport_notify_ops vmci_transport_notify_pkt_ops = {
vmci_transport_notify_pkt_socket_init,
vmci_transport_notify_pkt_socket_destruct,
vmci_transport_notify_pkt_poll_in,
Expand Down
5 changes: 3 additions & 2 deletions net/vmw_vsock/vmci_transport_notify.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ struct vmci_transport_notify_ops {
void (*process_negotiate) (struct sock *sk);
};

extern struct vmci_transport_notify_ops vmci_transport_notify_pkt_ops;
extern struct vmci_transport_notify_ops vmci_transport_notify_pkt_q_state_ops;
extern const struct vmci_transport_notify_ops vmci_transport_notify_pkt_ops;
extern const
struct vmci_transport_notify_ops vmci_transport_notify_pkt_q_state_ops;

#endif /* __VMCI_TRANSPORT_NOTIFY_H__ */
2 changes: 1 addition & 1 deletion net/vmw_vsock/vmci_transport_notify_qstate.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ vmci_transport_notify_pkt_send_pre_enqueue(
}

/* Socket always on control packet based operations. */
struct vmci_transport_notify_ops vmci_transport_notify_pkt_q_state_ops = {
const struct vmci_transport_notify_ops vmci_transport_notify_pkt_q_state_ops = {
vmci_transport_notify_pkt_socket_init,
vmci_transport_notify_pkt_socket_destruct,
vmci_transport_notify_pkt_poll_in,
Expand Down

0 comments on commit 3b22dae

Please sign in to comment.