Move ioctl frontend defines where they belong.
This commit is contained in:
parent
4fe0be11b5
commit
9bb4838c10
@ -56,6 +56,18 @@ __FBSDID("$FreeBSD$");
|
||||
#include <cam/ctl/ctl_debug.h>
|
||||
#include <cam/ctl/ctl_error.h>
|
||||
|
||||
typedef enum {
|
||||
CTL_IOCTL_INPROG,
|
||||
CTL_IOCTL_DATAMOVE,
|
||||
CTL_IOCTL_DONE
|
||||
} ctl_fe_ioctl_state;
|
||||
|
||||
struct ctl_fe_ioctl_params {
|
||||
struct cv sem;
|
||||
struct mtx ioctl_mtx;
|
||||
ctl_fe_ioctl_state state;
|
||||
};
|
||||
|
||||
struct cfi_softc {
|
||||
uint32_t cur_tag_num;
|
||||
struct ctl_port port;
|
||||
|
@ -47,18 +47,6 @@
|
||||
#define CTL_PROCESSOR_PRODUCT "CTLPROCESSOR "
|
||||
#define CTL_UNKNOWN_PRODUCT "CTLDEVICE "
|
||||
|
||||
typedef enum {
|
||||
CTL_IOCTL_INPROG,
|
||||
CTL_IOCTL_DATAMOVE,
|
||||
CTL_IOCTL_DONE
|
||||
} ctl_fe_ioctl_state;
|
||||
|
||||
struct ctl_fe_ioctl_params {
|
||||
struct cv sem;
|
||||
struct mtx ioctl_mtx;
|
||||
ctl_fe_ioctl_state state;
|
||||
};
|
||||
|
||||
#define CTL_POOL_ENTRIES_OTHER_SC 200
|
||||
|
||||
struct ctl_io_pool {
|
||||
|
Loading…
Reference in New Issue
Block a user