diff options
| author | Stephen Hemminger <[email protected]> | 2009-09-01 19:25:04 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2009-09-02 08:03:49 +0000 |
| commit | 3b401a81c0d50ea9c718cf837f62cc2e6e79cc30 (patch) | |
| tree | cfb386a92521ae614fc8d76932461f26d14e9fa3 /net/ipv4/tcp_ipv4.c | |
| parent | tcp: MD5 operations should be const (diff) | |
| download | kernel-3b401a81c0d50ea9c718cf837f62cc2e6e79cc30.tar.gz kernel-3b401a81c0d50ea9c718cf837f62cc2e6e79cc30.zip | |
inet: inet_connection_sock_af_ops const
The function block inet_connect_sock_af_ops contains no data
make it constant.
Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 3efbe94f022b..ce7d3b021ffc 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1754,7 +1754,7 @@ int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw) return 0; } -struct inet_connection_sock_af_ops ipv4_specific = { +const struct inet_connection_sock_af_ops ipv4_specific = { .queue_xmit = ip_queue_xmit, .send_check = tcp_v4_send_check, .rebuild_header = inet_sk_rebuild_header, |
