diff options
author | Kris Katterjohn <kjak@users.sourceforge.net> | 2006-01-05 19:35:42 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-05 19:48:56 -0500 |
commit | 46f25dffbaba48c571d75f5f574f31978287b8d2 (patch) | |
tree | 080e8c4331faf36202bd92174e5e47d0a5d9aa47 /net/ipv4 | |
parent | e924283bf93989979f27ef4f1228c5925f584a0a (diff) |
[NET]: Change 1500 to ETH_DATA_LEN in some files
These patches add the header linux/if_ether.h and change 1500 to
ETH_DATA_LEN in some files.
Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/ip_gre.c | 5 | ||||
-rw-r--r-- | net/ipv4/ipip.c | 3 | ||||
-rw-r--r-- | net/ipv4/ipmr.c | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 46f9d9cf7a5f..912c42f57c79 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/inetdevice.h> | 28 | #include <linux/inetdevice.h> |
29 | #include <linux/igmp.h> | 29 | #include <linux/igmp.h> |
30 | #include <linux/netfilter_ipv4.h> | 30 | #include <linux/netfilter_ipv4.h> |
31 | #include <linux/if_ether.h> | ||
31 | 32 | ||
32 | #include <net/sock.h> | 33 | #include <net/sock.h> |
33 | #include <net/ip.h> | 34 | #include <net/ip.h> |
@@ -1140,7 +1141,7 @@ static void ipgre_tunnel_setup(struct net_device *dev) | |||
1140 | 1141 | ||
1141 | dev->type = ARPHRD_IPGRE; | 1142 | dev->type = ARPHRD_IPGRE; |
1142 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr) + 4; | 1143 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr) + 4; |
1143 | dev->mtu = 1500 - sizeof(struct iphdr) - 4; | 1144 | dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 4; |
1144 | dev->flags = IFF_NOARP; | 1145 | dev->flags = IFF_NOARP; |
1145 | dev->iflink = 0; | 1146 | dev->iflink = 0; |
1146 | dev->addr_len = 4; | 1147 | dev->addr_len = 4; |
@@ -1152,7 +1153,7 @@ static int ipgre_tunnel_init(struct net_device *dev) | |||
1152 | struct ip_tunnel *tunnel; | 1153 | struct ip_tunnel *tunnel; |
1153 | struct iphdr *iph; | 1154 | struct iphdr *iph; |
1154 | int hlen = LL_MAX_HEADER; | 1155 | int hlen = LL_MAX_HEADER; |
1155 | int mtu = 1500; | 1156 | int mtu = ETH_DATA_LEN; |
1156 | int addend = sizeof(struct iphdr) + 4; | 1157 | int addend = sizeof(struct iphdr) + 4; |
1157 | 1158 | ||
1158 | tunnel = (struct ip_tunnel*)dev->priv; | 1159 | tunnel = (struct ip_tunnel*)dev->priv; |
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index c05c1df0bb04..35571cff81c6 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c | |||
@@ -108,6 +108,7 @@ | |||
108 | #include <linux/mroute.h> | 108 | #include <linux/mroute.h> |
109 | #include <linux/init.h> | 109 | #include <linux/init.h> |
110 | #include <linux/netfilter_ipv4.h> | 110 | #include <linux/netfilter_ipv4.h> |
111 | #include <linux/if_ether.h> | ||
111 | 112 | ||
112 | #include <net/sock.h> | 113 | #include <net/sock.h> |
113 | #include <net/ip.h> | 114 | #include <net/ip.h> |
@@ -786,7 +787,7 @@ static void ipip_tunnel_setup(struct net_device *dev) | |||
786 | 787 | ||
787 | dev->type = ARPHRD_TUNNEL; | 788 | dev->type = ARPHRD_TUNNEL; |
788 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr); | 789 | dev->hard_header_len = LL_MAX_HEADER + sizeof(struct iphdr); |
789 | dev->mtu = 1500 - sizeof(struct iphdr); | 790 | dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr); |
790 | dev->flags = IFF_NOARP; | 791 | dev->flags = IFF_NOARP; |
791 | dev->iflink = 0; | 792 | dev->iflink = 0; |
792 | dev->addr_len = 4; | 793 | dev->addr_len = 4; |
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index caa3b7d2e48a..9a5c0ce7ff35 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c | |||
@@ -49,6 +49,7 @@ | |||
49 | #include <linux/seq_file.h> | 49 | #include <linux/seq_file.h> |
50 | #include <linux/mroute.h> | 50 | #include <linux/mroute.h> |
51 | #include <linux/init.h> | 51 | #include <linux/init.h> |
52 | #include <linux/if_ether.h> | ||
52 | #include <net/ip.h> | 53 | #include <net/ip.h> |
53 | #include <net/protocol.h> | 54 | #include <net/protocol.h> |
54 | #include <linux/skbuff.h> | 55 | #include <linux/skbuff.h> |
@@ -193,7 +194,7 @@ static struct net_device_stats *reg_vif_get_stats(struct net_device *dev) | |||
193 | static void reg_vif_setup(struct net_device *dev) | 194 | static void reg_vif_setup(struct net_device *dev) |
194 | { | 195 | { |
195 | dev->type = ARPHRD_PIMREG; | 196 | dev->type = ARPHRD_PIMREG; |
196 | dev->mtu = 1500 - sizeof(struct iphdr) - 8; | 197 | dev->mtu = ETH_DATA_LEN - sizeof(struct iphdr) - 8; |
197 | dev->flags = IFF_NOARP; | 198 | dev->flags = IFF_NOARP; |
198 | dev->hard_start_xmit = reg_vif_xmit; | 199 | dev->hard_start_xmit = reg_vif_xmit; |
199 | dev->get_stats = reg_vif_get_stats; | 200 | dev->get_stats = reg_vif_get_stats; |