aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/af_inet.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/af_inet.c')
-rw-r--r--net/ipv4/af_inet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index 617e858beff1..4ed8a814c6cb 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -785,7 +785,7 @@ int inet_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
785 return err; 785 return err;
786} 786}
787 787
788struct proto_ops inet_stream_ops = { 788const struct proto_ops inet_stream_ops = {
789 .family = PF_INET, 789 .family = PF_INET,
790 .owner = THIS_MODULE, 790 .owner = THIS_MODULE,
791 .release = inet_release, 791 .release = inet_release,
@@ -806,7 +806,7 @@ struct proto_ops inet_stream_ops = {
806 .sendpage = tcp_sendpage 806 .sendpage = tcp_sendpage
807}; 807};
808 808
809struct proto_ops inet_dgram_ops = { 809const struct proto_ops inet_dgram_ops = {
810 .family = PF_INET, 810 .family = PF_INET,
811 .owner = THIS_MODULE, 811 .owner = THIS_MODULE,
812 .release = inet_release, 812 .release = inet_release,
@@ -831,7 +831,7 @@ struct proto_ops inet_dgram_ops = {
831 * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without 831 * For SOCK_RAW sockets; should be the same as inet_dgram_ops but without
832 * udp_poll 832 * udp_poll
833 */ 833 */
834static struct proto_ops inet_sockraw_ops = { 834static const struct proto_ops inet_sockraw_ops = {
835 .family = PF_INET, 835 .family = PF_INET,
836 .owner = THIS_MODULE, 836 .owner = THIS_MODULE,
837 .release = inet_release, 837 .release = inet_release,