net/llc/*.c
Forward port of LLC from 2.4 to 2.5. This is the forward port of the LLC stack released by Procom Inc. for Linux 2.0.30, I have heavily modified it to make it similar to other Linux network stacks, using of struct sk_buff to represent in-transit packets and doing massive code cleanups. Jay Schullist contributed support for BSD Sockets, as the original code had only a simple in kernel API for use by upper layer protocols, such as the NetBEUI stack also provided by Procom for 2.0.30. This code is basically what I had previously submitted to Alan Cox for his 2.4-ac series and that is even shipped in source form, in the Red Hat 7.3 kernel package, plus cleanups wrt standard syntax for labeled elements and further use of this C construct to make the code more resilient to editing mistakes, using the compiler to further check the source code. TODO: Make it completely SMP safe, as the reports of successful usage up to now and the testing is done on UP. Completely remove the old LLC code in the kernel, that is still there for things like Appletalk, IPX, etc to use, also check that all these protocols work correctly with this new LLC stack. This code is already being used in the linux-sna project and Jay Schullist has been developing support for things like DLSw and other protocols that works on top of 802.2. I'll be releasing patches with the NetBEUI stack and updated samba-2.0.6 patches for use with NetBEUI and this LLC stack in the future. But the NetBEUI code is available already in my kernel.org ftp area at: ftp://ftp.kernel.org/pub/linux/kernel/people/acme. Please report problems to me or the linux-sna mailing list, instructions on how to subscribe are available at http://www.linux-sna.org website.
Showing
include/linux/llc.h
0 → 100644
include/net/llc_actn.h
0 → 100644
include/net/llc_c_ac.h
0 → 100644
This diff is collapsed.
include/net/llc_c_ev.h
0 → 100644
This diff is collapsed.
include/net/llc_c_st.h
0 → 100644
include/net/llc_conn.h
0 → 100644
include/net/llc_evnt.h
0 → 100644
include/net/llc_if.h
0 → 100644
include/net/llc_mac.h
0 → 100644
include/net/llc_main.h
0 → 100644
include/net/llc_pdu.h
0 → 100644
This diff is collapsed.
include/net/llc_s_ac.h
0 → 100644
include/net/llc_s_ev.h
0 → 100644
include/net/llc_s_st.h
0 → 100644
include/net/llc_sap.h
0 → 100644
include/net/llc_stat.h
0 → 100644
net/core/ext8022.c
0 → 100644
net/llc/Makefile
0 → 100644
net/llc/llc_actn.c
0 → 100644
net/llc/llc_c_ac.c
0 → 100644
This diff is collapsed.
net/llc/llc_c_ev.c
0 → 100644
This diff is collapsed.
net/llc/llc_c_st.c
0 → 100644
This diff is collapsed.
net/llc/llc_conn.c
0 → 100644
This diff is collapsed.
net/llc/llc_evnt.c
0 → 100644
net/llc/llc_if.c
0 → 100644
This diff is collapsed.
net/llc/llc_mac.c
0 → 100644
This diff is collapsed.
net/llc/llc_main.c
0 → 100644
This diff is collapsed.
net/llc/llc_pdu.c
0 → 100644
This diff is collapsed.
net/llc/llc_s_ac.c
0 → 100644
This diff is collapsed.
net/llc/llc_s_ev.c
0 → 100644
This diff is collapsed.
net/llc/llc_s_st.c
0 → 100644
This diff is collapsed.
net/llc/llc_sap.c
0 → 100644
This diff is collapsed.
net/llc/llc_sock.c
0 → 100644
This diff is collapsed.
net/llc/llc_stat.c
0 → 100644
This diff is collapsed.
Please register or sign in to comment