mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Change role defines so that they better match class 3 service parameters.
Add ISPCTL_GET_PDB isp_control operation. MFC after: 1 week
This commit is contained in:
parent
8f6a5435e7
commit
e0d3cfb7be
1 changed files with 4 additions and 3 deletions
|
|
@ -487,8 +487,8 @@ typedef struct ispsoftc {
|
|||
*
|
||||
*/
|
||||
#define ISP_ROLE_NONE 0x0
|
||||
#define ISP_ROLE_INITIATOR 0x1
|
||||
#define ISP_ROLE_TARGET 0x2
|
||||
#define ISP_ROLE_TARGET 0x1
|
||||
#define ISP_ROLE_INITIATOR 0x2
|
||||
#define ISP_ROLE_BOTH (ISP_ROLE_TARGET|ISP_ROLE_INITIATOR)
|
||||
#define ISP_ROLE_EITHER ISP_ROLE_BOTH
|
||||
#ifndef ISP_DEFAULT_ROLES
|
||||
|
|
@ -679,7 +679,8 @@ typedef enum {
|
|||
ISPCTL_SEND_LIP, /* Send a LIP */
|
||||
ISPCTL_GET_POSMAP, /* Get FC-AL position map */
|
||||
ISPCTL_RUN_MBOXCMD, /* run a mailbox command */
|
||||
ISPCTL_TOGGLE_TMODE /* toggle target mode */
|
||||
ISPCTL_TOGGLE_TMODE, /* toggle target mode */
|
||||
ISPCTL_GET_PDB /* get a single port database entry */
|
||||
} ispctl_t;
|
||||
int isp_control(struct ispsoftc *, ispctl_t, void *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue