blob: b30f2eae1ac7ad5eeb4e62e3824b833a293d2686 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* $FreeBSD$
*/
#include <sys/ioccom.h>
struct ida_user_command {
int command;
int drive;
u_int32_t blkno;
union {
struct ida_drive_info di;
struct ida_drive_info_ext die;
struct ida_controller_info ci;
struct ida_drive_status ds;
struct ida_phys_drv_info pdi;
struct ida_blink_drv_leds bdl;
struct ida_label_logical ll;
u_int8_t buf;
} d;
};
#define IDAIO_COMMAND _IOWR('I', 100, struct ida_user_command)
|