aoe: remove sysfs comment
[deliverable/linux.git] / drivers / block / aoe / aoe.h
CommitLineData
2611464d 1/* Copyright (c) 2006 Coraid, Inc. See COPYING for GPL terms. */
0fdf1096 2#define VERSION "22"
1da177e4
LT
3#define AOE_MAJOR 152
4#define DEVICE_NAME "aoe"
fc458dcd 5
6/* set AOE_PARTITIONS to 1 to use whole-disks only
7 * default is 16, which is 15 partitions plus the whole disk
8 */
1da177e4 9#ifndef AOE_PARTITIONS
e39526e6 10#define AOE_PARTITIONS (16)
1da177e4 11#endif
fc458dcd 12
6bb6285f
EC
13#define xprintk(L, fmt, arg...) printk(L "aoe: " "%s: " fmt, __func__, ## arg)
14#define iprintk(fmt, arg...) xprintk(KERN_INFO, fmt, ## arg)
15#define eprintk(fmt, arg...) xprintk(KERN_ERR, fmt, ## arg)
16#define dprintk(fmt, arg...) xprintk(KERN_DEBUG, fmt, ## arg)
17
e39526e6
EC
18#define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * NPERSHELF + (aoeminor))
19#define AOEMAJOR(sysminor) ((sysminor) / NPERSHELF)
20#define AOEMINOR(sysminor) ((sysminor) % NPERSHELF)
1da177e4
LT
21#define WHITESPACE " \t\v\f\n"
22
23enum {
24 AOECMD_ATA,
25 AOECMD_CFG,
26
27 AOEFL_RSP = (1<<3),
28 AOEFL_ERR = (1<<2),
29
30 AOEAFL_EXT = (1<<6),
31 AOEAFL_DEV = (1<<4),
32 AOEAFL_ASYNC = (1<<1),
33 AOEAFL_WRITE = (1<<0),
34
35 AOECCMD_READ = 0,
36 AOECCMD_TEST,
37 AOECCMD_PTEST,
38 AOECCMD_SET,
39 AOECCMD_FSET,
40
41 AOE_HVER = 0x10,
42};
43
44struct aoe_hdr {
45 unsigned char dst[6];
46 unsigned char src[6];
63e9cc5d 47 __be16 type;
1da177e4
LT
48 unsigned char verfl;
49 unsigned char err;
63e9cc5d 50 __be16 major;
1da177e4
LT
51 unsigned char minor;
52 unsigned char cmd;
63e9cc5d 53 __be32 tag;
1da177e4
LT
54};
55
56struct aoe_atahdr {
57 unsigned char aflags;
58 unsigned char errfeat;
59 unsigned char scnt;
60 unsigned char cmdstat;
61 unsigned char lba0;
62 unsigned char lba1;
63 unsigned char lba2;
64 unsigned char lba3;
65 unsigned char lba4;
66 unsigned char lba5;
67 unsigned char res[2];
68};
69
70struct aoe_cfghdr {
63e9cc5d 71 __be16 bufcnt;
72 __be16 fwver;
19bf2635 73 unsigned char scnt;
1da177e4
LT
74 unsigned char aoeccmd;
75 unsigned char cslen[2];
76};
77
78enum {
79 DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
80 DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
81 DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
82 DEVFL_CLOSEWAIT = (1<<3), /* device is waiting for all closes to revalidate */
3ae1c24e
EC
83 DEVFL_GDALLOC = (1<<4), /* need to alloc gendisk */
84 DEVFL_PAUSE = (1<<5),
85 DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */
19bf2635 86 DEVFL_MAXBCNT = (1<<7), /* d->maxbcnt is not changeable */
4f51dc5e 87 DEVFL_KICKME = (1<<8),
1da177e4
LT
88
89 BUFFL_FAIL = 1,
90};
91
92enum {
19bf2635 93 DEFAULTBCNT = 2 * 512, /* 2 sectors */
e39526e6 94 NPERSHELF = 16, /* number of slots per shelf address */
1da177e4
LT
95 FREETAG = -1,
96 MIN_BUFS = 8,
97};
98
99struct buf {
100 struct list_head bufs;
0c6f0e79 101 ulong start_time; /* for disk stats */
1da177e4
LT
102 ulong flags;
103 ulong nframesout;
104 char *bufaddr;
105 ulong resid;
106 ulong bv_resid;
107 sector_t sector;
108 struct bio *bio;
109 struct bio_vec *bv;
110};
111
112struct frame {
113 int tag;
114 ulong waited;
115 struct buf *buf;
116 char *bufaddr;
19bf2635
EC
117 ulong bcnt;
118 sector_t lba;
e407a7f6 119 struct sk_buff *skb;
1da177e4
LT
120};
121
122struct aoedev {
123 struct aoedev *next;
124 unsigned char addr[6]; /* remote mac addr */
125 ushort flags;
126 ulong sysminor;
127 ulong aoemajor;
128 ulong aoeminor;
dced3a05
EC
129 u16 nopen; /* (bd_openers isn't available without sleeping) */
130 u16 lasttag; /* last tag sent */
131 u16 rttavg; /* round trip average of requests/responses */
132 u16 mintimer;
1da177e4 133 u16 fw_ver; /* version of blade's firmware */
19bf2635 134 u16 maxbcnt;
1da177e4
LT
135 struct work_struct work;/* disk create work struct */
136 struct gendisk *gd;
137 request_queue_t blkq;
138 struct hd_geometry geo;
139 sector_t ssize;
140 struct timer_list timer;
141 spinlock_t lock;
142 struct net_device *ifp; /* interface ed is attached to */
a4b38364 143 struct sk_buff *sendq_hd; /* packets needing to be sent, list head */
144 struct sk_buff *sendq_tl;
1da177e4
LT
145 mempool_t *bufpool; /* for deadlock-free Buf allocation */
146 struct list_head bufq; /* queue of bios to work on */
147 struct buf *inprocess; /* the one we're currently working on */
19bf2635
EC
148 ushort lostjumbo;
149 ushort nframes; /* number of frames below */
1da177e4
LT
150 struct frame *frames;
151};
152
153
154int aoeblk_init(void);
155void aoeblk_exit(void);
156void aoeblk_gdalloc(void *);
157void aoedisk_rm_sysfs(struct aoedev *d);
158
159int aoechr_init(void);
160void aoechr_exit(void);
161void aoechr_error(char *);
162
163void aoecmd_work(struct aoedev *d);
3ae1c24e 164void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
1da177e4
LT
165void aoecmd_ata_rsp(struct sk_buff *);
166void aoecmd_cfg_rsp(struct sk_buff *);
3ae1c24e 167void aoecmd_sleepwork(void *vp);
e407a7f6 168struct sk_buff *new_skb(ulong);
1da177e4
LT
169
170int aoedev_init(void);
171void aoedev_exit(void);
32465c65 172struct aoedev *aoedev_by_aoeaddr(int maj, int min);
3ae1c24e 173struct aoedev *aoedev_by_sysminor_m(ulong sysminor, ulong bufcnt);
1da177e4 174void aoedev_downdev(struct aoedev *d);
3ae1c24e 175int aoedev_isbusy(struct aoedev *d);
1da177e4
LT
176
177int aoenet_init(void);
178void aoenet_exit(void);
179void aoenet_xmit(struct sk_buff *);
180int is_aoe_netif(struct net_device *ifp);
181int set_aoe_iflist(const char __user *str, size_t size);
182
183u64 mac_addr(char addr[6]);
This page took 0.167295 seconds and 5 git commands to generate.