]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/block/aoe/aoe.h
aoe: improve network congestion handling
[karo-tx-linux.git] / drivers / block / aoe / aoe.h
1 /* Copyright (c) 2012 Coraid, Inc.  See COPYING for GPL terms. */
2 #define VERSION "60"
3 #define AOE_MAJOR 152
4 #define DEVICE_NAME "aoe"
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  */
9 #ifndef AOE_PARTITIONS
10 #define AOE_PARTITIONS (16)
11 #endif
12
13 #define WHITESPACE " \t\v\f\n"
14
15 enum {
16         AOECMD_ATA,
17         AOECMD_CFG,
18         AOECMD_VEND_MIN = 0xf0,
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
37 struct aoe_hdr {
38         unsigned char dst[6];
39         unsigned char src[6];
40         __be16 type;
41         unsigned char verfl;
42         unsigned char err;
43         __be16 major;
44         unsigned char minor;
45         unsigned char cmd;
46         __be32 tag;
47 };
48
49 struct 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
63 struct aoe_cfghdr {
64         __be16 bufcnt;
65         __be16 fwver;
66         unsigned char scnt;
67         unsigned char aoeccmd;
68         unsigned char cslen[2];
69 };
70
71 enum {
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 */
75         DEVFL_GDALLOC = (1<<3), /* need to alloc gendisk */
76         DEVFL_KICKME = (1<<4),  /* slow polling network card catch */
77         DEVFL_NEWSIZE = (1<<5), /* need to update dev size in block layer */
78 };
79
80 enum {
81         DEFAULTBCNT = 2 * 512,  /* 2 sectors */
82         MIN_BUFS = 16,
83         NTARGETS = 8,
84         NAOEIFS = 8,
85         NSKBPOOLMAX = 256,
86         NFACTIVE = 61,
87
88         TIMERTICK = HZ / 10,
89         RTTSCALE = 8,
90         RTTDSCALE = 3,
91         MAXTIMER = HZ << 1,
92         RTTAVG_INIT = HZ / 4 << RTTSCALE,
93         RTTDEV_INIT = RTTAVG_INIT / 4,
94 };
95
96 struct buf {
97         ulong nframesout;
98         ulong resid;
99         ulong bv_resid;
100         sector_t sector;
101         struct bio *bio;
102         struct bio_vec *bv;
103         struct request *rq;
104 };
105
106 struct frame {
107         struct list_head head;
108         u32 tag;
109         ulong waited;
110         struct aoetgt *t;               /* parent target I belong to */
111         sector_t lba;
112         struct sk_buff *skb;            /* command skb freed on module exit */
113         struct sk_buff *r_skb;          /* response skb for async processing */
114         struct buf *buf;
115         struct bio_vec *bv;
116         ulong bcnt;
117         ulong bv_off;
118 };
119
120 struct aoeif {
121         struct net_device *nd;
122         ulong lost;
123         int bcnt;
124 };
125
126 struct aoetgt {
127         unsigned char addr[6];
128         ushort nframes;         /* cap on frames to use */
129         struct aoedev *d;                       /* parent device I belong to */
130         struct list_head ffree;                 /* list of free frames */
131         struct aoeif ifs[NAOEIFS];
132         struct aoeif *ifp;      /* current aoeif in use */
133         ushort nout;            /* value of nout when skb was sent */
134         ushort maxout;          /* current value for max outstanding */
135         ushort next_cwnd;       /* incr maxout after decrementing to zero */
136         ushort ssthresh;        /* slow start threshold */
137         ulong falloc;           /* number of allocated frames */
138         int minbcnt;
139         int wpkts, rpkts;
140 };
141
142 struct aoedev {
143         struct aoedev *next;
144         ulong sysminor;
145         ulong aoemajor;
146         u16 aoeminor;
147         u16 flags;
148         u16 nopen;              /* (bd_openers isn't available without sleeping) */
149         u16 rttavg;             /* scaled AoE round trip time average */
150         u16 rttdev;             /* scaled round trip time mean deviation */
151         u16 fw_ver;             /* version of blade's firmware */
152         u16 lasttag;            /* last tag sent */
153         u16 useme;
154         ulong ref;
155         struct work_struct work;/* disk create work struct */
156         struct gendisk *gd;
157         struct request_queue *blkq;
158         struct hd_geometry geo;
159         sector_t ssize;
160         struct timer_list timer;
161         spinlock_t lock;
162         struct sk_buff_head skbpool;
163         mempool_t *bufpool;     /* for deadlock-free Buf allocation */
164         struct {                /* pointers to work in progress */
165                 struct buf *buf;
166                 struct bio *nxbio;
167                 struct request *rq;
168         } ip;
169         ulong maxbcnt;
170         struct list_head factive[NFACTIVE];     /* hash of active frames */
171         struct list_head rexmitq; /* deferred retransmissions */
172         struct aoetgt *targets[NTARGETS];
173         struct aoetgt **tgt;    /* target in use when working */
174         struct aoetgt *htgt;    /* target needing rexmit assistance */
175         ulong ntargets;
176         ulong kicked;
177         char ident[512];
178 };
179
180 /* kthread tracking */
181 struct ktstate {
182         struct completion rendez;
183         struct task_struct *task;
184         wait_queue_head_t *waitq;
185         int (*fn) (void);
186         char *name;
187         spinlock_t *lock;
188 };
189
190 int aoeblk_init(void);
191 void aoeblk_exit(void);
192 void aoeblk_gdalloc(void *);
193 void aoedisk_rm_sysfs(struct aoedev *d);
194
195 int aoechr_init(void);
196 void aoechr_exit(void);
197 void aoechr_error(char *);
198
199 void aoecmd_work(struct aoedev *d);
200 void aoecmd_cfg(ushort aoemajor, unsigned char aoeminor);
201 struct sk_buff *aoecmd_ata_rsp(struct sk_buff *);
202 void aoecmd_cfg_rsp(struct sk_buff *);
203 void aoecmd_sleepwork(struct work_struct *);
204 void aoecmd_wreset(struct aoetgt *t);
205 void aoecmd_cleanslate(struct aoedev *);
206 void aoecmd_exit(void);
207 int aoecmd_init(void);
208 struct sk_buff *aoecmd_ata_id(struct aoedev *);
209 void aoe_freetframe(struct frame *);
210 void aoe_flush_iocq(void);
211 void aoe_end_request(struct aoedev *, struct request *, int);
212 int aoe_ktstart(struct ktstate *k);
213 void aoe_ktstop(struct ktstate *k);
214
215 int aoedev_init(void);
216 void aoedev_exit(void);
217 struct aoedev *aoedev_by_aoeaddr(ulong maj, int min, int do_alloc);
218 void aoedev_downdev(struct aoedev *d);
219 int aoedev_flush(const char __user *str, size_t size);
220 void aoe_failbuf(struct aoedev *, struct buf *);
221 void aoedev_put(struct aoedev *);
222
223 int aoenet_init(void);
224 void aoenet_exit(void);
225 void aoenet_xmit(struct sk_buff_head *);
226 int is_aoe_netif(struct net_device *ifp);
227 int set_aoe_iflist(const char __user *str, size_t size);