diff options
author | Joe Eykholt <jeykholt@cisco.com> | 2010-07-20 18:19:58 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2010-07-28 10:05:52 -0400 |
commit | 3d902ac09a2812b359edf633425d1327a18399e9 (patch) | |
tree | 188605c45a1502862610b03e8429a67ed3d3a7b7 /drivers/scsi/fcoe/libfcoe.c | |
parent | 0685230c59b5482e04ab50e7afc51119ceaba651 (diff) |
[SCSI] libfcoe: fcoe: fnic: change fcoe_ctlr_init interface to specify mode
There are three modes that libfcoe currently supports, and a new one
is coming. Change the fcoe_ctlr_init() interface to add the mode
desired. This should not change any functionality.
Signed-off-by: Joe Eykholt <jeykholt@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/fcoe/libfcoe.c')
-rw-r--r-- | drivers/scsi/fcoe/libfcoe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/fcoe/libfcoe.c b/drivers/scsi/fcoe/libfcoe.c index e510888e78ca..76056e4c9297 100644 --- a/drivers/scsi/fcoe/libfcoe.c +++ b/drivers/scsi/fcoe/libfcoe.c | |||
@@ -108,10 +108,10 @@ static inline int fcoe_ctlr_fcf_usable(struct fcoe_fcf *fcf) | |||
108 | * fcoe_ctlr_init() - Initialize the FCoE Controller instance | 108 | * fcoe_ctlr_init() - Initialize the FCoE Controller instance |
109 | * @fip: The FCoE controller to initialize | 109 | * @fip: The FCoE controller to initialize |
110 | */ | 110 | */ |
111 | void fcoe_ctlr_init(struct fcoe_ctlr *fip) | 111 | void fcoe_ctlr_init(struct fcoe_ctlr *fip, enum fip_state mode) |
112 | { | 112 | { |
113 | fip->state = FIP_ST_LINK_WAIT; | 113 | fip->state = FIP_ST_LINK_WAIT; |
114 | fip->mode = FIP_ST_AUTO; | 114 | fip->mode = mode; |
115 | INIT_LIST_HEAD(&fip->fcfs); | 115 | INIT_LIST_HEAD(&fip->fcfs); |
116 | mutex_init(&fip->ctlr_mutex); | 116 | mutex_init(&fip->ctlr_mutex); |
117 | fip->flogi_oxid = FC_XID_UNKNOWN; | 117 | fip->flogi_oxid = FC_XID_UNKNOWN; |