lxip: Add loopback device

Fixes #1204
This commit is contained in:
Sebastian Sumpf 2014-11-10 20:51:00 +01:00 committed by Christian Helmuth
parent 21f013d2c4
commit bc4eab430a
5 changed files with 6 additions and 2 deletions

View File

@ -46,6 +46,7 @@ SRC_C += net/ethernet/eth.c
SRC_C += net/netlink/af_netlink.c
SRC_C += net/sched/sch_generic.c
SRC_C += lib/checksum.c
SRC_C += drivers/net/loopback.c
# DHCP support
SRC_C += net/ipv4/ipconfig.c

View File

@ -1,3 +1,4 @@
linux-3.9/drivers/net/loopback.c
linux-3.9/include/asm-generic/bitops/non-atomic.h
linux-3.9/include/linux/errqueue.h
linux-3.9/include/linux/etherdevice.h

View File

@ -1 +1 @@
bef53a5523bf042a29c5d390e9b55f43a128afec
47adfa6b4fe8f41b3863e3e80a753d97ad0fb701

View File

@ -59,6 +59,7 @@ DUMMY_RET(0, netdev_kobject_init)
DUMMY_RET(0, netdev_register_kobject)
DUMMY_RET(0, netpoll_rx)
DUMMY_RET(0, nla_put)
DUMMY_RET(1, ns_capable)
DUMMY_RET(1, num_possible_cpus)
DUMMY_RET(0, read_seqretry)
DUMMY_RET(0, poll_does_not_wait)
@ -347,7 +348,6 @@ DUMMY(-1, nla_strcmp)
DUMMY(-1, nla_strlcpy)
DUMMY(-1, nla_validate)
DUMMY(-1, notifier_from_errno)
DUMMY(-1, ns_capable)
DUMMY(-1, num_online_cpus)
DUMMY(-1, on_each_cpu)
DUMMY(-1, open_softirq)

View File

@ -506,6 +506,8 @@ typedef unsigned long mm_segment_t;
void prefetchw(const void *);
void prefetch(const void *);
void *current_text_addr(void);
/*************************************
** linux/byteorder/little_endian.h **