diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/802/p8023.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/802/p8023.c')
-rw-r--r-- | net/802/p8023.c | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/net/802/p8023.c b/net/802/p8023.c new file mode 100644 index 000000000000..a0b61b40225f --- /dev/null +++ b/net/802/p8023.c | |||
@@ -0,0 +1,61 @@ | |||
1 | /* | ||
2 | * NET3: 802.3 data link hooks used for IPX 802.3 | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version | ||
7 | * 2 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * 802.3 isn't really a protocol data link layer. Some old IPX stuff | ||
10 | * uses it however. Note that there is only one 802.3 protocol layer | ||
11 | * in the system. We don't currently support different protocols | ||
12 | * running raw 802.3 on different devices. Thankfully nobody else | ||
13 | * has done anything like the old IPX. | ||
14 | */ | ||
15 | |||
16 | #include <linux/in.h> | ||
17 | #include <linux/mm.h> | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/netdevice.h> | ||
20 | #include <linux/skbuff.h> | ||
21 | |||
22 | #include <net/datalink.h> | ||
23 | |||
24 | /* | ||
25 | * Place an 802.3 header on a packet. The driver will do the mac | ||
26 | * addresses, we just need to give it the buffer length. | ||
27 | */ | ||
28 | static int p8023_request(struct datalink_proto *dl, | ||
29 | struct sk_buff *skb, unsigned char *dest_node) | ||
30 | { | ||
31 | struct net_device *dev = skb->dev; | ||
32 | |||
33 | dev->hard_header(skb, dev, ETH_P_802_3, dest_node, NULL, skb->len); | ||
34 | return dev_queue_xmit(skb); | ||
35 | } | ||
36 | |||
37 | /* | ||
38 | * Create an 802.3 client. Note there can be only one 802.3 client | ||
39 | */ | ||
40 | struct datalink_proto *make_8023_client(void) | ||
41 | { | ||
42 | struct datalink_proto *proto = kmalloc(sizeof(*proto), GFP_ATOMIC); | ||
43 | |||
44 | if (proto) { | ||
45 | proto->header_length = 0; | ||
46 | proto->request = p8023_request; | ||
47 | } | ||
48 | return proto; | ||
49 | } | ||
50 | |||
51 | /* | ||
52 | * Destroy the 802.3 client. | ||
53 | */ | ||
54 | void destroy_8023_client(struct datalink_proto *dl) | ||
55 | { | ||
56 | if (dl) | ||
57 | kfree(dl); | ||
58 | } | ||
59 | |||
60 | EXPORT_SYMBOL(destroy_8023_client); | ||
61 | EXPORT_SYMBOL(make_8023_client); | ||