aoe: update internal version number to v83
[deliverable/linux.git] / drivers / block / aoe / aoe.h
CommitLineData
ca47bbd9 1/* Copyright (c) 2013 Coraid, Inc. See COPYING for GPL terms. */
94ac1183 2#define VERSION "83"
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
4a6c9ee9 13#define WHITESPACE " \t\v\f\n,"
1da177e4
LT
14
15enum {
16 AOECMD_ATA,
17 AOECMD_CFG,
b6d6c517 18 AOECMD_VEND_MIN = 0xf0,
1da177e4
LT
19
20 AOEFL_RSP = (1<<3),
21 AOEFL_ERR = (1<<2),
22
23 AOEAFL_EXT = (1<<6),
24 AOEAFL_DEV = (1<<4),
25 AOEAFL_ASYNC = (1<<1),
26 AOEAFL_WRITE = (1<<0),
27
28 AOECCMD_READ = 0,
29 AOECCMD_TEST,
30 AOECCMD_PTEST,
31 AOECCMD_SET,
32 AOECCMD_FSET,
33
34 AOE_HVER = 0x10,
35};
36
37struct aoe_hdr {
38 unsigned char dst[6];
39 unsigned char src[6];
63e9cc5d 40 __be16 type;
1da177e4
LT
41 unsigned char verfl;
42 unsigned char err;
63e9cc5d 43 __be16 major;
1da177e4
LT
44 unsigned char minor;
45 unsigned char cmd;
63e9cc5d 46 __be32 tag;
1da177e4
LT
47};
48
49struct aoe_atahdr {
50 unsigned char aflags;
51 unsigned char errfeat;
52 unsigned char scnt;
53 unsigned char cmdstat;
54 unsigned char lba0;
55 unsigned char lba1;
56 unsigned char lba2;
57 unsigned char lba3;
58 unsigned char lba4;
59 unsigned char lba5;
60 unsigned char res[2];
61};
62
63struct aoe_cfghdr {
63e9cc5d 64 __be16 bufcnt;
65 __be16 fwver;
19bf2635 66 unsigned char scnt;
1da177e4
LT
67 unsigned char aoeccmd;
68 unsigned char cslen[2];
69};
70
71enum {
72 DEVFL_UP = 1, /* device is installed in system and ready for AoE->ATA commands */
73 DEVFL_TKILL = (1<<1), /* flag for timer to know when to kill self */
74 DEVFL_EXT = (1<<2), /* device accepts lba48 commands */
b21faa25 75 DEVFL_GDALLOC = (1<<3), /* need to alloc gendisk */
e52a2932
EC
76 DEVFL_GD_NOW = (1<<4), /* allocating gendisk */
77 DEVFL_KICKME = (1<<5), /* slow polling network card catch */
78 DEVFL_NEWSIZE = (1<<6), /* need to update dev size in block layer */
79 DEVFL_FREEING = (1<<7), /* set when device is being cleaned up */
80 DEVFL_FREED = (1<<8), /* device has been cleaned up */
1da177e4
LT
81};
82
83enum {
19bf2635 84 DEFAULTBCNT = 2 * 512, /* 2 sectors */
68e0d42f 85 MIN_BUFS = 16,
71114ec4 86 NTARGETS = 4,
68e0d42f 87 NAOEIFS = 8,
69cf2d85 88 NSKBPOOLMAX = 256,
64a80f5a 89 NFACTIVE = 61,
68e0d42f
EC
90
91 TIMERTICK = HZ / 10,
3a0c40d2
EC
92 RTTSCALE = 8,
93 RTTDSCALE = 3,
5f0c9c48 94 RTTAVG_INIT = USEC_PER_SEC / 4 << RTTSCALE,
3a0c40d2 95 RTTDEV_INIT = RTTAVG_INIT / 4,
bbb44e30
EC
96
97 HARD_SCORN_SECS = 10, /* try another remote port after this */
98 MAX_TAINT = 1000, /* cap on aoetgt taint */
1da177e4
LT
99};
100
101struct buf {
1da177e4 102 ulong nframesout;
1da177e4
LT
103 ulong resid;
104 ulong bv_resid;
105 sector_t sector;
106 struct bio *bio;
107 struct bio_vec *bv;
69cf2d85 108 struct request *rq;
1da177e4
LT
109};
110
bbb44e30
EC
111enum frame_flags {
112 FFL_PROBE = 1,
113};
114
1da177e4 115struct frame {
896831f5
EC
116 struct list_head head;
117 u32 tag;
5f0c9c48
EC
118 struct timeval sent; /* high-res time packet was sent */
119 u32 sent_jiffs; /* low-res jiffies-based sent time */
1da177e4 120 ulong waited;
3fc9b032 121 ulong waited_total;
896831f5 122 struct aoetgt *t; /* parent target I belong to */
19bf2635 123 sector_t lba;
896831f5
EC
124 struct sk_buff *skb; /* command skb freed on module exit */
125 struct sk_buff *r_skb; /* response skb for async processing */
69cf2d85 126 struct buf *buf;
3d5b0605 127 struct bio_vec *bv;
69cf2d85 128 ulong bcnt;
3d5b0605 129 ulong bv_off;
bbb44e30 130 char flags;
1da177e4
LT
131};
132
68e0d42f
EC
133struct aoeif {
134 struct net_device *nd;
3f0f0133
EC
135 ulong lost;
136 int bcnt;
68e0d42f
EC
137};
138
139struct aoetgt {
140 unsigned char addr[6];
1b8a1636 141 ushort nframes; /* cap on frames to use */
896831f5 142 struct aoedev *d; /* parent device I belong to */
896831f5 143 struct list_head ffree; /* list of free frames */
68e0d42f
EC
144 struct aoeif ifs[NAOEIFS];
145 struct aoeif *ifp; /* current aoeif in use */
72837600 146 ushort nout; /* number of AoE commands outstanding */
1b8a1636 147 ushort maxout; /* current value for max outstanding */
3a0c40d2
EC
148 ushort next_cwnd; /* incr maxout after decrementing to zero */
149 ushort ssthresh; /* slow start threshold */
1b8a1636 150 ulong falloc; /* number of allocated frames */
bbb44e30 151 int taint; /* how much we want to avoid this aoetgt */
3f0f0133 152 int minbcnt;
68e0d42f 153 int wpkts, rpkts;
bbb44e30 154 char nout_probes;
68e0d42f
EC
155};
156
1da177e4
LT
157struct aoedev {
158 struct aoedev *next;
1da177e4
LT
159 ulong sysminor;
160 ulong aoemajor;
5f0c9c48
EC
161 u32 rttavg; /* scaled AoE round trip time average */
162 u32 rttdev; /* scaled round trip time mean deviation */
68e0d42f
EC
163 u16 aoeminor;
164 u16 flags;
dced3a05 165 u16 nopen; /* (bd_openers isn't available without sleeping) */
1da177e4 166 u16 fw_ver; /* version of blade's firmware */
64a80f5a
EC
167 u16 lasttag; /* last tag sent */
168 u16 useme;
69cf2d85 169 ulong ref;
1da177e4
LT
170 struct work_struct work;/* disk create work struct */
171 struct gendisk *gd;
7135a71b 172 struct request_queue *blkq;
a04b41cd 173 struct hd_geometry geo;
1da177e4
LT
174 sector_t ssize;
175 struct timer_list timer;
176 spinlock_t lock;
e9bb8fb0 177 struct sk_buff_head skbpool;
1da177e4 178 mempool_t *bufpool; /* for deadlock-free Buf allocation */
69cf2d85
EC
179 struct { /* pointers to work in progress */
180 struct buf *buf;
181 struct bio *nxbio;
182 struct request *rq;
183 } ip;
3f0f0133 184 ulong maxbcnt;
64a80f5a 185 struct list_head factive[NFACTIVE]; /* hash of active frames */
3a0c40d2 186 struct list_head rexmitq; /* deferred retransmissions */
71114ec4
EC
187 struct aoetgt **targets;
188 ulong ntargets; /* number of allocated aoetgt pointers */
68e0d42f 189 struct aoetgt **tgt; /* target in use when working */
896831f5 190 ulong kicked;
667be1e7 191 char ident[512];
1da177e4
LT
192};
193
896831f5
EC
194/* kthread tracking */
195struct ktstate {
196 struct completion rendez;
197 struct task_struct *task;
198 wait_queue_head_t *waitq;
8030d343
EC
199 int (*fn) (int);
200 char name[12];
896831f5 201 spinlock_t *lock;
8030d343
EC
202 int id;
203 int active;
896831f5 204};
1da177e4
LT
205
206int aoeblk_init(void);
207void aoeblk_exit(void);
208void aoeblk_gdalloc(void *);
209void aoedisk_rm_sysfs(struct aoedev *d);
210
211int aoechr_init(void);
212void aoechr_exit(void);
213void aoechr_error(char *);
214
215void aoecmd_work(struct aoedev *d);
3ae1c24e 216void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
896831f5 217struct sk_buff *aoecmd_ata_rsp(struct sk_buff *);
1da177e4 218void aoecmd_cfg_rsp(struct sk_buff *);
c4028958 219void aoecmd_sleepwork(struct work_struct *);
3a0c40d2 220void aoecmd_wreset(struct aoetgt *t);
68e0d42f 221void aoecmd_cleanslate(struct aoedev *);
896831f5
EC
222void aoecmd_exit(void);
223int aoecmd_init(void);
68e0d42f 224struct sk_buff *aoecmd_ata_id(struct aoedev *);
896831f5 225void aoe_freetframe(struct frame *);
69cf2d85 226void aoe_flush_iocq(void);
8030d343 227void aoe_flush_iocq_by_index(int);
69cf2d85 228void aoe_end_request(struct aoedev *, struct request *, int);
eb086ec5
EC
229int aoe_ktstart(struct ktstate *k);
230void aoe_ktstop(struct ktstate *k);
1da177e4
LT
231
232int aoedev_init(void);
233void aoedev_exit(void);
0c966214 234struct aoedev *aoedev_by_aoeaddr(ulong maj, int min, int do_alloc);
1da177e4 235void aoedev_downdev(struct aoedev *d);
262bf541 236int aoedev_flush(const char __user *str, size_t size);
69cf2d85
EC
237void aoe_failbuf(struct aoedev *, struct buf *);
238void aoedev_put(struct aoedev *);
1da177e4
LT
239
240int aoenet_init(void);
241void aoenet_exit(void);
e9bb8fb0 242void aoenet_xmit(struct sk_buff_head *);
1da177e4
LT
243int is_aoe_netif(struct net_device *ifp);
244int set_aoe_iflist(const char __user *str, size_t size);
This page took 0.804621 seconds and 5 git commands to generate.