diff options
| author | David S. Miller <davem@davemloft.net> | 2010-05-10 07:59:07 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-05-10 07:59:07 -0400 |
| commit | f0ecde1466f21edf577b809735f4f35f354777a0 (patch) | |
| tree | f901b890c53ec33f51e2eaa776f828fafede9759 | |
| parent | bbd725435ddb1cac732f7a8c23c21ff67f24c60f (diff) | |
net: Fix FDDI and TR config checks in ipv4 arp and LLC.
Need to check both CONFIG_FOO and CONFIG_FOO_MODULE
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv4/arp.c | 6 | ||||
| -rw-r--r-- | net/llc/llc_sap.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 6e747065c202..80769f1f9fab 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c | |||
| @@ -661,13 +661,13 @@ struct sk_buff *arp_create(int type, int ptype, __be32 dest_ip, | |||
| 661 | #endif | 661 | #endif |
| 662 | #endif | 662 | #endif |
| 663 | 663 | ||
| 664 | #ifdef CONFIG_FDDI | 664 | #if defined(CONFIG_FDDI) || defined(CONFIG_FDDI_MODULE) |
| 665 | case ARPHRD_FDDI: | 665 | case ARPHRD_FDDI: |
| 666 | arp->ar_hrd = htons(ARPHRD_ETHER); | 666 | arp->ar_hrd = htons(ARPHRD_ETHER); |
| 667 | arp->ar_pro = htons(ETH_P_IP); | 667 | arp->ar_pro = htons(ETH_P_IP); |
| 668 | break; | 668 | break; |
| 669 | #endif | 669 | #endif |
| 670 | #ifdef CONFIG_TR | 670 | #if defined(CONFIG_TR) || defined(CONFIG_TR_MODULE) |
| 671 | case ARPHRD_IEEE802_TR: | 671 | case ARPHRD_IEEE802_TR: |
| 672 | arp->ar_hrd = htons(ARPHRD_IEEE802); | 672 | arp->ar_hrd = htons(ARPHRD_IEEE802); |
| 673 | arp->ar_pro = htons(ETH_P_IP); | 673 | arp->ar_pro = htons(ETH_P_IP); |
| @@ -1051,7 +1051,7 @@ static int arp_req_set(struct net *net, struct arpreq *r, | |||
| 1051 | return -EINVAL; | 1051 | return -EINVAL; |
| 1052 | } | 1052 | } |
| 1053 | switch (dev->type) { | 1053 | switch (dev->type) { |
| 1054 | #ifdef CONFIG_FDDI | 1054 | #if defined(CONFIG_FDDI) || defined(CONFIG_FDDI_MODULE) |
| 1055 | case ARPHRD_FDDI: | 1055 | case ARPHRD_FDDI: |
| 1056 | /* | 1056 | /* |
| 1057 | * According to RFC 1390, FDDI devices should accept ARP | 1057 | * According to RFC 1390, FDDI devices should accept ARP |
diff --git a/net/llc/llc_sap.c b/net/llc/llc_sap.c index a432f0ec051c..94e7fca75b85 100644 --- a/net/llc/llc_sap.c +++ b/net/llc/llc_sap.c | |||
| @@ -31,7 +31,7 @@ static int llc_mac_header_len(unsigned short devtype) | |||
| 31 | case ARPHRD_ETHER: | 31 | case ARPHRD_ETHER: |
| 32 | case ARPHRD_LOOPBACK: | 32 | case ARPHRD_LOOPBACK: |
| 33 | return sizeof(struct ethhdr); | 33 | return sizeof(struct ethhdr); |
| 34 | #ifdef CONFIG_TR | 34 | #if defined(CONFIG_TR) || defined(CONFIG_TR_MODULE) |
| 35 | case ARPHRD_IEEE802_TR: | 35 | case ARPHRD_IEEE802_TR: |
| 36 | return sizeof(struct trh_hdr); | 36 | return sizeof(struct trh_hdr); |
| 37 | #endif | 37 | #endif |
