Commit 8a9a7138 authored by Robert Love's avatar Robert Love

libfc, fcoe, bnx2fc: Always use fcoe_disc_init for discovery layer initialization

Currently libfcoe is doing some libfc discovery layer initialization outside of
libfc. This patch moves this code into libfc and sets up a split in discovery
(one time) initialization code and (re-configurable) settings that will come in
the next patch.
Signed-off-by: default avatarRobert Love <robert.w.love@intel.com>
Tested-by: default avatarJack Morgan <jack.morgan@intel.com>
Reviewed-by: default avatarBhanu Prakash Gollapudi <bprakash@broadcom.com>
parent f9c4358e
...@@ -939,7 +939,7 @@ static int bnx2fc_libfc_config(struct fc_lport *lport) ...@@ -939,7 +939,7 @@ static int bnx2fc_libfc_config(struct fc_lport *lport)
fc_elsct_init(lport); fc_elsct_init(lport);
fc_exch_init(lport); fc_exch_init(lport);
fc_rport_init(lport); fc_rport_init(lport);
fc_disc_init(lport); fc_disc_init(lport, lport);
return 0; return 0;
} }
......
...@@ -2826,6 +2826,8 @@ static void fcoe_ctlr_vn_timeout(struct fcoe_ctlr *fip) ...@@ -2826,6 +2826,8 @@ static void fcoe_ctlr_vn_timeout(struct fcoe_ctlr *fip)
int fcoe_libfc_config(struct fc_lport *lport, struct fcoe_ctlr *fip, int fcoe_libfc_config(struct fc_lport *lport, struct fcoe_ctlr *fip,
const struct libfc_function_template *tt, int init_fcp) const struct libfc_function_template *tt, int init_fcp)
{ {
void *priv = lport;
/* Set the function pointers set by the LLDD */ /* Set the function pointers set by the LLDD */
memcpy(&lport->tt, tt, sizeof(*tt)); memcpy(&lport->tt, tt, sizeof(*tt));
if (init_fcp && fc_fcp_init(lport)) if (init_fcp && fc_fcp_init(lport))
...@@ -2842,12 +2844,11 @@ int fcoe_libfc_config(struct fc_lport *lport, struct fcoe_ctlr *fip, ...@@ -2842,12 +2844,11 @@ int fcoe_libfc_config(struct fc_lport *lport, struct fcoe_ctlr *fip,
lport->tt.disc_start = fcoe_ctlr_disc_start; lport->tt.disc_start = fcoe_ctlr_disc_start;
lport->tt.disc_stop = fcoe_ctlr_disc_stop; lport->tt.disc_stop = fcoe_ctlr_disc_stop;
lport->tt.disc_stop_final = fcoe_ctlr_disc_stop_final; lport->tt.disc_stop_final = fcoe_ctlr_disc_stop_final;
mutex_init(&lport->disc.disc_mutex); priv = fip;
INIT_LIST_HEAD(&lport->disc.rports);
lport->disc.priv = fip;
} else {
fc_disc_init(lport);
} }
fc_disc_init(lport, priv);
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(fcoe_libfc_config); EXPORT_SYMBOL_GPL(fcoe_libfc_config);
......
...@@ -714,8 +714,9 @@ static void fc_disc_stop_final(struct fc_lport *lport) ...@@ -714,8 +714,9 @@ static void fc_disc_stop_final(struct fc_lport *lport)
/** /**
* fc_disc_init() - Initialize the discovery layer for a local port * fc_disc_init() - Initialize the discovery layer for a local port
* @lport: The local port that needs the discovery layer to be initialized * @lport: The local port that needs the discovery layer to be initialized
* @priv: Private data structre for users of the discovery layer
*/ */
int fc_disc_init(struct fc_lport *lport) int fc_disc_init(struct fc_lport *lport, void *priv)
{ {
struct fc_disc *disc; struct fc_disc *disc;
...@@ -736,7 +737,7 @@ int fc_disc_init(struct fc_lport *lport) ...@@ -736,7 +737,7 @@ int fc_disc_init(struct fc_lport *lport)
mutex_init(&disc->disc_mutex); mutex_init(&disc->disc_mutex);
INIT_LIST_HEAD(&disc->rports); INIT_LIST_HEAD(&disc->rports);
disc->priv = lport; disc->priv = priv;
return 0; return 0;
} }
......
...@@ -1074,7 +1074,7 @@ void fc_rport_terminate_io(struct fc_rport *); ...@@ -1074,7 +1074,7 @@ void fc_rport_terminate_io(struct fc_rport *);
/* /*
* DISCOVERY LAYER * DISCOVERY LAYER
*****************************/ *****************************/
int fc_disc_init(struct fc_lport *); int fc_disc_init(struct fc_lport *, void *);
static inline struct fc_lport *fc_disc_lport(struct fc_disc *disc) static inline struct fc_lport *fc_disc_lport(struct fc_disc *disc)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment