diff options
author | Christof Schmitt <christof.schmitt@de.ibm.com> | 2009-11-24 10:54:11 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-04 13:02:14 -0500 |
commit | bd0072ecc449fb2ea8f6a2c9f6ff308f3ae0b078 (patch) | |
tree | d58dc3bbac4a7e5c7fa44c009c4946b091eb9a88 /drivers/s390/scsi/zfcp_dbf.c | |
parent | dbf5dfe9dbcecf159139eec25ad256738cbc3715 (diff) |
[SCSI] zfcp: Move WKA port to zfcp FC code
The well-known-address (WKA) port handling code is part of the FC code
in zfcp. Move everything WKA related to the zfcp_fc files and use the
common zfcp_fc prefix for structs and functions. Drop the unused key
management service while renaming the struct, no request could ever
reach this service in zfcp and it is obsolete anyway.
Reviewed-by: Swen Schillig <swen@vnet.ibm.com>
Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/s390/scsi/zfcp_dbf.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_dbf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/s390/scsi/zfcp_dbf.c b/drivers/s390/scsi/zfcp_dbf.c index d7a550af4a25..e945344ff711 100644 --- a/drivers/s390/scsi/zfcp_dbf.c +++ b/drivers/s390/scsi/zfcp_dbf.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <asm/debug.h> | 13 | #include <asm/debug.h> |
14 | #include "zfcp_dbf.h" | 14 | #include "zfcp_dbf.h" |
15 | #include "zfcp_ext.h" | 15 | #include "zfcp_ext.h" |
16 | #include "zfcp_fc.h" | ||
16 | 17 | ||
17 | static u32 dbfsize = 4; | 18 | static u32 dbfsize = 4; |
18 | 19 | ||
@@ -681,7 +682,7 @@ void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action) | |||
681 | void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req) | 682 | void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req) |
682 | { | 683 | { |
683 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; | 684 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; |
684 | struct zfcp_wka_port *wka_port = ct->wka_port; | 685 | struct zfcp_fc_wka_port *wka_port = ct->wka_port; |
685 | struct zfcp_adapter *adapter = wka_port->adapter; | 686 | struct zfcp_adapter *adapter = wka_port->adapter; |
686 | struct zfcp_dbf *dbf = adapter->dbf; | 687 | struct zfcp_dbf *dbf = adapter->dbf; |
687 | struct fc_ct_hdr *hdr = sg_virt(ct->req); | 688 | struct fc_ct_hdr *hdr = sg_virt(ct->req); |
@@ -718,7 +719,7 @@ void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req) | |||
718 | void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req) | 719 | void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req) |
719 | { | 720 | { |
720 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; | 721 | struct zfcp_send_ct *ct = (struct zfcp_send_ct *)fsf_req->data; |
721 | struct zfcp_wka_port *wka_port = ct->wka_port; | 722 | struct zfcp_fc_wka_port *wka_port = ct->wka_port; |
722 | struct zfcp_adapter *adapter = wka_port->adapter; | 723 | struct zfcp_adapter *adapter = wka_port->adapter; |
723 | struct fc_ct_hdr *hdr = sg_virt(ct->resp); | 724 | struct fc_ct_hdr *hdr = sg_virt(ct->resp); |
724 | struct zfcp_dbf *dbf = adapter->dbf; | 725 | struct zfcp_dbf *dbf = adapter->dbf; |