icmp.c (8ed7edce82ca0d8d3adba8c08cd42337af6c758c) icmp.c (5ee091050986796856cc6207d86b38b4ef6bd8f4)
1/*
2 * Internet Control Message Protocol (ICMPv6)
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * $Id: icmp.c,v 1.38 2002/02/08 03:57:19 davem Exp $

--- 941 unchanged lines hidden (view full) ---

950
951struct ctl_table *ipv6_icmp_sysctl_init(struct net *net)
952{
953 struct ctl_table *table;
954
955 table = kmemdup(ipv6_icmp_table_template,
956 sizeof(ipv6_icmp_table_template),
957 GFP_KERNEL);
1/*
2 * Internet Control Message Protocol (ICMPv6)
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * $Id: icmp.c,v 1.38 2002/02/08 03:57:19 davem Exp $

--- 941 unchanged lines hidden (view full) ---

950
951struct ctl_table *ipv6_icmp_sysctl_init(struct net *net)
952{
953 struct ctl_table *table;
954
955 table = kmemdup(ipv6_icmp_table_template,
956 sizeof(ipv6_icmp_table_template),
957 GFP_KERNEL);
958
959 if (table)
960 table[0].data = &net->ipv6.sysctl.icmpv6_time;
961
958 return table;
959}
960#endif
961
962 return table;
963}
964#endif
965