Release 4.11 net/ipx/pe2.c
#include <linux/in.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/netdevice.h>
#include <linux/skbuff.h>
#include <linux/slab.h>
#include <net/datalink.h>
static int pEII_request(struct datalink_proto *dl,
struct sk_buff *skb, unsigned char *dest_node)
{
struct net_device *dev = skb->dev;
skb->protocol = htons(ETH_P_IPX);
dev_hard_header(skb, dev, ETH_P_IPX, dest_node, NULL, skb->len);
return dev_queue_xmit(skb);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 53 | 85.48% | 4 | 66.67% |
Arnaldo Carvalho de Melo | 8 | 12.90% | 1 | 16.67% |
Stephen Hemminger | 1 | 1.61% | 1 | 16.67% |
Total | 62 | 100.00% | 6 | 100.00% |
struct datalink_proto *make_EII_client(void)
{
struct datalink_proto *proto = kmalloc(sizeof(*proto), GFP_ATOMIC);
if (proto) {
proto->header_length = 0;
proto->request = pEII_request;
}
return proto;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 42 | 91.30% | 2 | 50.00% |
Arnaldo Carvalho de Melo | 4 | 8.70% | 2 | 50.00% |
Total | 46 | 100.00% | 4 | 100.00% |
void destroy_EII_client(struct datalink_proto *dl)
{
kfree(dl);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 15 | 100.00% | 2 | 100.00% |
Total | 15 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 120 | 83.33% | 7 | 63.64% |
Arnaldo Carvalho de Melo | 20 | 13.89% | 2 | 18.18% |
Tejun Heo | 3 | 2.08% | 1 | 9.09% |
Stephen Hemminger | 1 | 0.69% | 1 | 9.09% |
Total | 144 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.