diff options
| author | Sean Bruno <sbruno@FreeBSD.org> | 2013-09-22 23:48:41 +0000 |
|---|---|---|
| committer | Sean Bruno <sbruno@FreeBSD.org> | 2013-09-22 23:48:41 +0000 |
| commit | c22a9c369ea0f3ceb40e9b2b11b96dc4d1f13752 (patch) | |
| tree | dc63b7d74fb182b84f493cc8bef0c30bb0b608c6 | |
| parent | 0f7bc112c08586c80272f50c553b77453a3d0281 (diff) | |
Export two new DCMD enums. These allow set/get of the mfi_ctrl_properties
structure in the driver.
Having these in 10.0 means that mfiutil can be modified to take adavantage
of new updates without a kernel recompile.
Approved by: re (gjb)
MFC after: 2 weeks
Notes
svn path=/head/; revision=255806
| -rw-r--r-- | sys/dev/mfi/mfireg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/mfi/mfireg.h b/sys/dev/mfi/mfireg.h index acb1df58c2d1..163c75f40ca7 100644 --- a/sys/dev/mfi/mfireg.h +++ b/sys/dev/mfi/mfireg.h @@ -192,6 +192,8 @@ typedef enum { MFI_DCMD_CTRL_MFC_DEFAULTS_GET =0x010e0201, MFI_DCMD_CTRL_MFC_DEFAULTS_SET =0x010e0202, MFI_DCMD_CTRL_FLUSHCACHE = 0x01101000, + MFI_DCMD_CTRL_GET_PROPS = 0x01020100, + MFI_DCMD_CTRL_SET_PROPS = 0x01020200, MFI_DCMD_CTRL_SHUTDOWN = 0x01050000, MFI_DCMD_CTRL_EVENT_GETINFO = 0x01040100, MFI_DCMD_CTRL_EVENT_GET = 0x01040300, |
