diff options
author | marius <marius@FreeBSD.org> | 2013-05-30 00:22:07 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2013-05-30 00:22:07 +0000 |
commit | f463a4083c29543a7119bf2b1872530b83f819f1 (patch) | |
tree | ba576eab8be9125b7ea3ff64d222314b06992859 /sys/dev/aac/aacvar.h | |
parent | c4a034ff8debecd0fd480a753564a0a2248f0436 (diff) | |
download | FreeBSD-src-f463a4083c29543a7119bf2b1872530b83f819f1.zip FreeBSD-src-f463a4083c29543a7119bf2b1872530b83f819f1.tar.gz |
Allow unmapped I/O via aacd(4). It shouldn't be too hard to add the
same support for aacp(4), I'm lacking the necessary hardware for
testing, though.
Diffstat (limited to 'sys/dev/aac/aacvar.h')
-rw-r--r-- | sys/dev/aac/aacvar.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h index f856234..18ae0b2 100644 --- a/sys/dev/aac/aacvar.h +++ b/sys/dev/aac/aacvar.h @@ -181,6 +181,8 @@ struct aac_command #define AAC_ON_AACQ_MASK ((1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<10)) #define AAC_QUEUE_FRZN (1<<9) /* Freeze the processing of * commands on the queue. */ +#define AAC_REQ_BIO (1 << 11) +#define AAC_REQ_CCB (1 << 12) void (*cm_complete)(struct aac_command *cm); void *cm_private; |