1 /* Copyright (c) 2004 Coraid, Inc. See COPYING for GPL terms. */
4 #define DEVICE_NAME "aoe"
6 /* set AOE_PARTITIONS to 1 to use whole-disks only
7 * default is 16, which is 15 partitions plus the whole disk
10 #define AOE_PARTITIONS 16
13 #define SYSMINOR(aoemajor, aoeminor) ((aoemajor) * 10 + (aoeminor))
14 #define AOEMAJOR(sysminor) ((sysminor) / 10)
15 #define AOEMINOR(sysminor) ((sysminor) % 10)
16 #define WHITESPACE " \t\v\f\n"
27 AOEAFL_ASYNC
= (1<<1),
28 AOEAFL_WRITE
= (1<<0),
53 unsigned char errfeat
;
55 unsigned char cmdstat
;
69 unsigned char aoeccmd
;
70 unsigned char cslen
[2];
74 DEVFL_UP
= 1, /* device is installed in system and ready for AoE->ATA commands */
75 DEVFL_TKILL
= (1<<1), /* flag for timer to know when to kill self */
76 DEVFL_EXT
= (1<<2), /* device accepts lba48 commands */
77 DEVFL_CLOSEWAIT
= (1<<3), /* device is waiting for all closes to revalidate */
78 DEVFL_WC_UPDATE
= (1<<4), /* this device needs to update write cache status */
79 DEVFL_WORKON
= (1<<4),
92 struct list_head bufs
;
93 ulong start_time
; /* for disk stats */
112 /* largest possible */
113 unsigned char data
[sizeof(struct aoe_hdr
) + sizeof(struct aoe_atahdr
)];
118 unsigned char addr
[6]; /* remote mac addr */
123 ulong nopen
; /* (bd_openers isn't available without sleeping) */
124 ulong rttavg
; /* round trip average of requests/responses */
125 u16 fw_ver
; /* version of blade's firmware */
126 struct work_struct work
;/* disk create work struct */
128 request_queue_t blkq
;
129 struct hd_geometry geo
;
131 struct timer_list timer
;
133 struct net_device
*ifp
; /* interface ed is attached to */
134 struct sk_buff
*sendq_hd
; /* packets needing to be sent, list head */
135 struct sk_buff
*sendq_tl
;
136 mempool_t
*bufpool
; /* for deadlock-free Buf allocation */
137 struct list_head bufq
; /* queue of bios to work on */
138 struct buf
*inprocess
; /* the one we're currently working on */
139 ulong lasttag
; /* last tag sent */
140 ulong nframes
; /* number of frames below */
141 struct frame
*frames
;
145 int aoeblk_init(void);
146 void aoeblk_exit(void);
147 void aoeblk_gdalloc(void *);
148 void aoedisk_rm_sysfs(struct aoedev
*d
);
150 int aoechr_init(void);
151 void aoechr_exit(void);
152 void aoechr_error(char *);
154 void aoecmd_work(struct aoedev
*d
);
155 void aoecmd_cfg(ushort
, unsigned char);
156 void aoecmd_ata_rsp(struct sk_buff
*);
157 void aoecmd_cfg_rsp(struct sk_buff
*);
159 int aoedev_init(void);
160 void aoedev_exit(void);
161 struct aoedev
*aoedev_by_aoeaddr(int maj
, int min
);
162 void aoedev_downdev(struct aoedev
*d
);
163 struct aoedev
*aoedev_set(ulong
, unsigned char *, struct net_device
*, ulong
);
164 int aoedev_busy(void);
166 int aoenet_init(void);
167 void aoenet_exit(void);
168 void aoenet_xmit(struct sk_buff
*);
169 int is_aoe_netif(struct net_device
*ifp
);
170 int set_aoe_iflist(const char __user
*str
, size_t size
);
172 u64
mac_addr(char addr
[6]);