Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ipx: move peII functions

The Ethernet II wrapper is only used by IPX protocol, may have once
been used by Appletalk but not currently. Therefore it makes sense to
move it to the IPX dust bin and drop the exports.

Build tested only.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

stephen hemminger and committed by
David S. Miller
83bd1b79 d8f1641b

+1 -5
-2
net/ethernet/Makefile
··· 3 3 # 4 4 5 5 obj-y += eth.o 6 - obj-$(subst m,y,$(CONFIG_IPX)) += pe2.o 7 - obj-$(subst m,y,$(CONFIG_ATALK)) += pe2.o
-2
net/ethernet/pe2.c net/ipx/pe2.c
··· 28 28 29 29 return proto; 30 30 } 31 - EXPORT_SYMBOL(make_EII_client); 32 31 33 32 void destroy_EII_client(struct datalink_proto *dl) 34 33 { 35 34 kfree(dl); 36 35 } 37 - EXPORT_SYMBOL(destroy_EII_client);
+1 -1
net/ipx/Makefile
··· 4 4 5 5 obj-$(CONFIG_IPX) += ipx.o 6 6 7 - ipx-y := af_ipx.o ipx_route.o ipx_proc.o 7 + ipx-y := af_ipx.o ipx_route.o ipx_proc.o pe2.o 8 8 ipx-$(CONFIG_SYSCTL) += sysctl_net_ipx.o