This source file includes following definitions.
- loopback_xmit
- get_stats
- loopback_open
- loopback_init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include <linux/config.h>
22 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/interrupt.h>
25 #include <linux/fs.h>
26 #include <linux/types.h>
27 #include <linux/string.h>
28 #include <linux/socket.h>
29 #include <linux/errno.h>
30 #include <linux/fcntl.h>
31 #include <linux/in.h>
32 #include <linux/if_ether.h>
33
34 #include <asm/system.h>
35 #include <asm/segment.h>
36 #include <asm/io.h>
37
38 #include <linux/inet.h>
39 #include <linux/netdevice.h>
40 #include <linux/etherdevice.h>
41 #include <linux/skbuff.h>
42
43
44 static int
45 loopback_xmit(struct sk_buff *skb, struct device *dev)
46 {
47 struct enet_statistics *stats = (struct enet_statistics *)dev->priv;
48 int done;
49
50 if (skb == NULL || dev == NULL) return(0);
51
52 cli();
53 if (dev->tbusy != 0) {
54 sti();
55 stats->tx_errors++;
56 return(1);
57 }
58 dev->tbusy = 1;
59 sti();
60
61
62
63
64 done = dev_rint(skb->data, skb->len, 0, dev);
65 dev_kfree_skb(skb, FREE_WRITE);
66
67 while (done != 1) {
68 done = dev_rint(NULL, 0, 0, dev);
69 }
70 stats->tx_packets++;
71
72 dev->tbusy = 0;
73
74 return(0);
75 }
76
77 static struct enet_statistics *
78 get_stats(struct device *dev)
79 {
80 return (struct enet_statistics *)dev->priv;
81 }
82
83 static int loopback_open(struct device *dev)
84 {
85 dev->flags|=IFF_LOOPBACK;
86 return 0;
87 }
88
89
90 int
91 loopback_init(struct device *dev)
92 {
93 int i;
94
95 dev->mtu = 2000;
96 dev->tbusy = 0;
97 dev->hard_start_xmit = loopback_xmit;
98 dev->open = NULL;
99 #if 1
100 dev->hard_header = eth_header;
101 dev->hard_header_len = ETH_HLEN;
102 dev->addr_len = ETH_ALEN;
103 dev->type = ARPHRD_ETHER;
104 dev->type_trans = eth_type_trans;
105 dev->rebuild_header = eth_rebuild_header;
106 dev->open = loopback_open;
107 #else
108 dev->hard_header_length = 0;
109 dev->addr_len = 0;
110 dev->type = 0;
111 dev->hard_header = NULL;
112 dev->type_trans = NULL;
113 dev->rebuild_header = NULL;
114 #endif
115
116
117 dev->flags = IFF_LOOPBACK|IFF_BROADCAST;
118 dev->family = AF_INET;
119 #ifdef CONFIG_INET
120 dev->pa_addr = in_aton("127.0.0.1");
121 dev->pa_brdaddr = in_aton("127.255.255.255");
122 dev->pa_mask = in_aton("255.0.0.0");
123 dev->pa_alen = sizeof(unsigned long);
124 #endif
125 dev->priv = kmalloc(sizeof(struct enet_statistics), GFP_KERNEL);
126 memset(dev->priv, 0, sizeof(struct enet_statistics));
127 dev->get_stats = get_stats;
128
129
130 for (i = 0; i < DEV_NUMBUFFS; i++)
131 skb_queue_head_init(&dev->buffs[i]);
132
133 return(0);
134 };