mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-29 12:03:03 +00:00
The ccb_xflags enumeration was removed from FreeBSD/head in
r259397 (it contained the CAM_EXTLUN_VALID bit) and I added the same type name with a different set of values back in r291716. The old ccb_xflags enumeration still exists in FreeBSD stable/10. Shift all of the new values by one bit to avoid compatibility issues when merged to stable/10. MFC after: 3 days Sponsored by: Spectra Logic
This commit is contained in:
parent
be90c1c6b5
commit
23d63288c2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=291960
@ -110,9 +110,9 @@ typedef enum {
|
|||||||
} ccb_flags;
|
} ccb_flags;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
CAM_USER_DATA_ADDR = 0x00000001,/* Userspace data pointers */
|
CAM_USER_DATA_ADDR = 0x00000002,/* Userspace data pointers */
|
||||||
CAM_SG_FORMAT_IOVEC = 0x00000002,/* iovec instead of busdma S/G*/
|
CAM_SG_FORMAT_IOVEC = 0x00000004,/* iovec instead of busdma S/G*/
|
||||||
CAM_UNMAPPED_BUF = 0x00000004 /* use unmapped I/O */
|
CAM_UNMAPPED_BUF = 0x00000008 /* use unmapped I/O */
|
||||||
} ccb_xflags;
|
} ccb_xflags;
|
||||||
|
|
||||||
/* XPT Opcodes for xpt_action */
|
/* XPT Opcodes for xpt_action */
|
||||||
|
Loading…
Reference in New Issue
Block a user