aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_fc.c
diff options
context:
space:
mode:
authorSwen Schillig <swen@vnet.ibm.com>2008-10-01 06:42:16 -0400
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-10-03 13:11:52 -0400
commit44cc76f2d154aa24340354b4711a0fe7f8f08adc (patch)
tree0b32bb89450b12262b4bf78fc4cd297e8db0b77b /drivers/s390/scsi/zfcp_fc.c
parentff3b24fa5370a7ca618f212284d9b36fcedb9c0e (diff)
[SCSI] zfcp: remove unused references, declarations and flags
- Remove unused references and declarations, including one instance of the FC ls_adisc struct that has been defined twice. - Also remove the flags COMMON_OPENING, COMMON_CLOSING, ADAPTER_REGISTERED and XPORT_OK that are only set and cleared, but not checked anywhere. - Remove the zfcp specific atomic_test_mask makro. Simply use atomic_read directly instead. - Remove the zfcp internal sg helper functions and switch the places where it is still used to call sg_virt directly. - With the update of the QDIO code, the QDIO data structures no longer use the volatile type qualifier. Now we can also remove the volatile qualifiers from the zfcp code. Signed-off-by: Swen Schillig <swen@vnet.ibm.com> Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_fc.c')
-rw-r--r--drivers/s390/scsi/zfcp_fc.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/drivers/s390/scsi/zfcp_fc.c b/drivers/s390/scsi/zfcp_fc.c
index 56196c98c07b..44456f74a12d 100644
--- a/drivers/s390/scsi/zfcp_fc.c
+++ b/drivers/s390/scsi/zfcp_fc.c
@@ -47,10 +47,11 @@ static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
47 47
48 read_lock_irqsave(&zfcp_data.config_lock, flags); 48 read_lock_irqsave(&zfcp_data.config_lock, flags);
49 list_for_each_entry(port, &fsf_req->adapter->port_list_head, list) { 49 list_for_each_entry(port, &fsf_req->adapter->port_list_head, list) {
50 if (atomic_test_mask(ZFCP_STATUS_PORT_WKA, &port->status)) 50 if ((atomic_read(&port->status) & ZFCP_STATUS_PORT_WKA) ==
51 ZFCP_STATUS_PORT_WKA)
51 continue; 52 continue;
52 /* FIXME: ZFCP_STATUS_PORT_DID_DID check is racy */ 53 /* FIXME: ZFCP_STATUS_PORT_DID_DID check is racy */
53 if (!atomic_test_mask(ZFCP_STATUS_PORT_DID_DID, &port->status)) 54 if (!(atomic_read(&port->status) & ZFCP_STATUS_PORT_DID_DID))
54 /* Try to connect to unused ports anyway. */ 55 /* Try to connect to unused ports anyway. */
55 zfcp_erp_port_reopen(port, 56 zfcp_erp_port_reopen(port,
56 ZFCP_STATUS_COMMON_ERP_FAILED, 57 ZFCP_STATUS_COMMON_ERP_FAILED,
@@ -255,14 +256,14 @@ struct zfcp_els_adisc {
255 struct scatterlist req; 256 struct scatterlist req;
256 struct scatterlist resp; 257 struct scatterlist resp;
257 struct zfcp_ls_adisc ls_adisc; 258 struct zfcp_ls_adisc ls_adisc;
258 struct zfcp_ls_adisc_acc ls_adisc_acc; 259 struct zfcp_ls_adisc ls_adisc_acc;
259}; 260};
260 261
261static void zfcp_fc_adisc_handler(unsigned long data) 262static void zfcp_fc_adisc_handler(unsigned long data)
262{ 263{
263 struct zfcp_els_adisc *adisc = (struct zfcp_els_adisc *) data; 264 struct zfcp_els_adisc *adisc = (struct zfcp_els_adisc *) data;
264 struct zfcp_port *port = adisc->els.port; 265 struct zfcp_port *port = adisc->els.port;
265 struct zfcp_ls_adisc_acc *ls_adisc = &adisc->ls_adisc_acc; 266 struct zfcp_ls_adisc *ls_adisc = &adisc->ls_adisc_acc;
266 267
267 if (adisc->els.status) { 268 if (adisc->els.status) {
268 /* request rejected or timed out */ 269 /* request rejected or timed out */
@@ -295,7 +296,7 @@ static int zfcp_fc_adisc(struct zfcp_port *port)
295 sg_init_one(adisc->els.req, &adisc->ls_adisc, 296 sg_init_one(adisc->els.req, &adisc->ls_adisc,
296 sizeof(struct zfcp_ls_adisc)); 297 sizeof(struct zfcp_ls_adisc));
297 sg_init_one(adisc->els.resp, &adisc->ls_adisc_acc, 298 sg_init_one(adisc->els.resp, &adisc->ls_adisc_acc,
298 sizeof(struct zfcp_ls_adisc_acc)); 299 sizeof(struct zfcp_ls_adisc));
299 300
300 adisc->els.req_count = 1; 301 adisc->els.req_count = 1;
301 adisc->els.resp_count = 1; 302 adisc->els.resp_count = 1;
@@ -345,16 +346,16 @@ static int zfcp_scan_get_nameserver(struct zfcp_adapter *adapter)
345 if (!adapter->nameserver_port) 346 if (!adapter->nameserver_port)
346 return -EINTR; 347 return -EINTR;
347 348
348 if (!atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED, 349 if (!(atomic_read(&adapter->nameserver_port->status) &
349 &adapter->nameserver_port->status)) { 350 ZFCP_STATUS_COMMON_UNBLOCKED)) {
350 ret = zfcp_erp_port_reopen(adapter->nameserver_port, 0, 148, 351 ret = zfcp_erp_port_reopen(adapter->nameserver_port, 0, 148,
351 NULL); 352 NULL);
352 if (ret) 353 if (ret)
353 return ret; 354 return ret;
354 zfcp_erp_wait(adapter); 355 zfcp_erp_wait(adapter);
355 } 356 }
356 return !atomic_test_mask(ZFCP_STATUS_COMMON_UNBLOCKED, 357 return !(atomic_read(&adapter->nameserver_port->status) &
357 &adapter->nameserver_port->status); 358 ZFCP_STATUS_COMMON_UNBLOCKED);
358} 359}
359 360
360static void zfcp_gpn_ft_handler(unsigned long _done) 361static void zfcp_gpn_ft_handler(unsigned long _done)