]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipx/pe2.c
iommu/amd: Reserve exclusion range in iova-domain
[mirror_ubuntu-bionic-kernel.git] / net / ipx / pe2.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
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>
5a0e3ad6 7#include <linux/slab.h>
1da177e4
LT
8
9#include <net/datalink.h>
10
11static int pEII_request(struct datalink_proto *dl,
12 struct sk_buff *skb, unsigned char *dest_node)
13{
14 struct net_device *dev = skb->dev;
15
16 skb->protocol = htons(ETH_P_IPX);
0c4e8581 17 dev_hard_header(skb, dev, ETH_P_IPX, dest_node, NULL, skb->len);
1da177e4
LT
18 return dev_queue_xmit(skb);
19}
20
21struct datalink_proto *make_EII_client(void)
22{
23 struct datalink_proto *proto = kmalloc(sizeof(*proto), GFP_ATOMIC);
24
25 if (proto) {
26 proto->header_length = 0;
27 proto->request = pEII_request;
28 }
29
30 return proto;
31}
32
33void destroy_EII_client(struct datalink_proto *dl)
34{
a51482bd 35 kfree(dl);
1da177e4 36}