6b13f685e
김민수
BSP 최초 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#ifndef _ATMCLIP_H
#define _ATMCLIP_H
#include <linux/netdevice.h>
#include <linux/atm.h>
#include <linux/atmdev.h>
#include <linux/atmarp.h>
#include <linux/spinlock.h>
#include <net/neighbour.h>
#define CLIP_VCC(vcc) ((struct clip_vcc *) ((vcc)->user_back))
struct sk_buff;
struct clip_vcc {
struct atm_vcc *vcc;
struct atmarp_entry *entry;
int xoff;
unsigned char encap;
unsigned long last_use;
unsigned long idle_timeout;
void (*old_push)(struct atm_vcc *vcc,struct sk_buff *skb);
void (*old_pop)(struct atm_vcc *vcc,struct sk_buff *skb);
struct clip_vcc *next;
};
struct atmarp_entry {
struct clip_vcc *vccs;
unsigned long expires;
struct neighbour *neigh;
};
#define PRIV(dev) ((struct clip_priv *) netdev_priv(dev))
struct clip_priv {
int number;
spinlock_t xoff_lock;
struct net_device *next;
};
#endif
|