Linux 4.16.11
[linux/fpc-iii.git] / drivers / staging / ipx / pe2.c
blobba7d4214bbffdb5fc1670828edb235607843a622
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/in.h>
3 #include <linux/mm.h>
4 #include <linux/module.h>
5 #include <linux/netdevice.h>
6 #include <linux/skbuff.h>
7 #include <linux/slab.h>
9 #include <net/datalink.h>
11 static int pEII_request(struct datalink_proto *dl,
12 struct sk_buff *skb, unsigned char *dest_node)
14 struct net_device *dev = skb->dev;
16 skb->protocol = htons(ETH_P_IPX);
17 dev_hard_header(skb, dev, ETH_P_IPX, dest_node, NULL, skb->len);
18 return dev_queue_xmit(skb);
21 struct datalink_proto *make_EII_client(void)
23 struct datalink_proto *proto = kmalloc(sizeof(*proto), GFP_ATOMIC);
25 if (proto) {
26 proto->header_length = 0;
27 proto->request = pEII_request;
30 return proto;
33 void destroy_EII_client(struct datalink_proto *dl)
35 kfree(dl);