Lines Matching defs:aoedev
151 struct aoedev { struct
152 struct aoedev *next; argument
153 ulong sysminor;
154 ulong aoemajor;
155 u32 rttavg; /* scaled AoE round trip time average */
156 u32 rttdev; /* scaled round trip time mean deviation */
157 u16 aoeminor;
158 u16 flags;
159 u16 nopen; /* (bd_openers isn't available without sleeping) */
160 u16 fw_ver; /* version of blade's firmware */
161 u16 lasttag; /* last tag sent */
162 u16 useme;
163 ulong ref;
164 struct work_struct work;/* disk create work struct */
165 struct gendisk *gd;
166 struct dentry *debugfs;
167 struct request_queue *blkq;
168 struct hd_geometry geo;
169 sector_t ssize;
170 struct timer_list timer;
171 spinlock_t lock;
172 struct sk_buff_head skbpool;
173 mempool_t *bufpool; /* for deadlock-free Buf allocation */
174 struct { /* pointers to work in progress */
178 } ip;
179 ulong maxbcnt;
180 struct list_head factive[NFACTIVE]; /* hash of active frames */
204 void aoedisk_rm_debugfs(struct aoedev *d); argument