diff options
author | Robert Love <robert.w.love@intel.com> | 2013-03-25 14:00:27 -0400 |
---|---|---|
committer | Robert Love <robert.w.love@intel.com> | 2013-03-25 19:01:10 -0400 |
commit | 8a9a71381208b2364a2d12b0d257ae333917a1bc (patch) | |
tree | 3ed22690783800d22ddc569983bb0e069ea0de9d /drivers/scsi/libfc/fc_disc.c | |
parent | f9c4358edb285cead00a0d6cf0644c84ee773026 (diff) |
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: Robert Love <robert.w.love@intel.com>
Tested-by: Jack Morgan <jack.morgan@intel.com>
Reviewed-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
Diffstat (limited to 'drivers/scsi/libfc/fc_disc.c')
-rw-r--r-- | drivers/scsi/libfc/fc_disc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/libfc/fc_disc.c b/drivers/scsi/libfc/fc_disc.c index 8e561e6a557c..141c54b97082 100644 --- a/drivers/scsi/libfc/fc_disc.c +++ b/drivers/scsi/libfc/fc_disc.c | |||
@@ -714,8 +714,9 @@ static void fc_disc_stop_final(struct fc_lport *lport) | |||
714 | /** | 714 | /** |
715 | * fc_disc_init() - Initialize the discovery layer for a local port | 715 | * fc_disc_init() - Initialize the discovery layer for a local port |
716 | * @lport: The local port that needs the discovery layer to be initialized | 716 | * @lport: The local port that needs the discovery layer to be initialized |
717 | * @priv: Private data structre for users of the discovery layer | ||
717 | */ | 718 | */ |
718 | int fc_disc_init(struct fc_lport *lport) | 719 | int fc_disc_init(struct fc_lport *lport, void *priv) |
719 | { | 720 | { |
720 | struct fc_disc *disc; | 721 | struct fc_disc *disc; |
721 | 722 | ||
@@ -736,7 +737,7 @@ int fc_disc_init(struct fc_lport *lport) | |||
736 | mutex_init(&disc->disc_mutex); | 737 | mutex_init(&disc->disc_mutex); |
737 | INIT_LIST_HEAD(&disc->rports); | 738 | INIT_LIST_HEAD(&disc->rports); |
738 | 739 | ||
739 | disc->priv = lport; | 740 | disc->priv = priv; |
740 | 741 | ||
741 | return 0; | 742 | return 0; |
742 | } | 743 | } |