Changeset 10842
- Timestamp:
- 11/10/08 18:16:02 (5 years ago)
- Location:
- src/linux/ar531x/linux-2.6.23
- Files:
-
- 1 added
- 4 edited
-
include/linux/in.h (modified) (1 diff)
-
net/core/dev.c (modified) (1 diff)
-
net/ipv4/Kconfig (modified) (1 diff)
-
net/ipv4/Makefile (modified) (1 diff)
-
net/ipv4/etherip.c (added)
Legend:
- Unmodified
- Added
- Removed
-
src/linux/ar531x/linux-2.6.23/include/linux/in.h
r8169 r10842 42 42 IPPROTO_AH = 51, /* Authentication Header protocol */ 43 43 IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */ 44 IPPROTO_ETHERIP = 97, /* Ethernet-in-IP tunneling (rfc 3378) */ 44 45 IPPROTO_PIM = 103, /* Protocol Independent Multicast */ 45 46 -
src/linux/ar531x/linux-2.6.23/net/core/dev.c
r8169 r10842 1782 1782 1783 1783 __get_cpu_var(netdev_rx_stat).total++; 1784 1785 #ifdef CONFIG_BRIDGE 1786 /* Optimisation for framebursting (allow interleaving of pkts by 1787 * immediately processing the rx pkt instead of Qing the pkt and deferring 1788 * the processing). Only optimise for bridging and guard against non 1789 * TASKLET based netif_rx calls. 1790 */ 1791 if (!in_irq() && (skb->dev->br_port != NULL) && br_handle_frame_hook != NULL) { 1792 local_irq_restore(flags); 1793 return netif_receive_skb(skb); 1794 } 1795 #endif 1796 1784 1797 if (queue->input_pkt_queue.qlen <= netdev_max_backlog) { 1785 1798 if (queue->input_pkt_queue.qlen) { -
src/linux/ar531x/linux-2.6.23/net/ipv4/Kconfig
r8169 r10842 226 226 to do that, say Y here and to "IP multicast routing" below. 227 227 228 config NET_ETHERIP 229 tristate "IP: ethernet-in-IP tunneling" 230 depends on INET 231 help 232 Tunneling means encapsulating data of one protocol type within 233 another protocol and sending it over a channel that understands the 234 encapsulating protocol. This particular tunneling driver implements 235 the etherip Ethernet-in-IP protocol as described in RFC 3378. 236 228 237 config IP_MROUTE 229 238 bool "IP: multicast routing" -
src/linux/ar531x/linux-2.6.23/net/ipv4/Makefile
r8169 r10842 20 20 obj-$(CONFIG_NET_IPIP) += ipip.o 21 21 obj-$(CONFIG_NET_IPGRE) += ip_gre.o 22 obj-$(CONFIG_NET_ETHERIP) += etherip.o 22 23 obj-$(CONFIG_SYN_COOKIES) += syncookies.o 23 24 obj-$(CONFIG_INET_AH) += ah4.o
Note: See TracChangeset
for help on using the changeset viewer.
