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