diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-28 16:30:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-28 16:30:43 -0400 |
commit | d54b3538b0bfb31351d02d1669d4a978d2abfc5f (patch) | |
tree | 5ce539ecba525b30bbfb1c46c55487099264947e /drivers/s390/scsi/zfcp_sysfs.c | |
parent | 5d80f8e5a9dc9c9a94d4aeaa567e219a808b8a4a (diff) | |
parent | af50bb993dfa673cf21ab812efe620d7e0c36319 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (119 commits)
[SCSI] scsi_dh_rdac: Retry for NOT_READY check condition
[SCSI] mpt2sas: make global symbols unique
[SCSI] sd: Make revalidate less chatty
[SCSI] sd: Try READ CAPACITY 16 first for SBC-2 devices
[SCSI] sd: Refactor sd_read_capacity()
[SCSI] mpt2sas v00.100.11.15
[SCSI] mpt2sas: add MPT2SAS_MINOR(221) to miscdevice.h
[SCSI] ch: Add scsi type modalias
[SCSI] 3w-9xxx: add power management support
[SCSI] bsg: add linux/types.h include to bsg.h
[SCSI] cxgb3i: fix function descriptions
[SCSI] libiscsi: fix possbile null ptr session command cleanup
[SCSI] iscsi class: remove host no argument from session creation callout
[SCSI] libiscsi: pass session failure a session struct
[SCSI] iscsi lib: remove qdepth param from iscsi host allocation
[SCSI] iscsi lib: have lib create work queue for transmitting IO
[SCSI] iscsi class: fix lock dep warning on logout
[SCSI] libiscsi: don't cap queue depth in iscsi modules
[SCSI] iscsi_tcp: replace scsi_debug/tcp_debug logging with iscsi conn logging
[SCSI] libiscsi_tcp: replace tcp_debug/scsi_debug logging with session/conn logging
...
Diffstat (limited to 'drivers/s390/scsi/zfcp_sysfs.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_sysfs.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/s390/scsi/zfcp_sysfs.c b/drivers/s390/scsi/zfcp_sysfs.c index 899af2b45b1e..9a3b8e261c0a 100644 --- a/drivers/s390/scsi/zfcp_sysfs.c +++ b/drivers/s390/scsi/zfcp_sysfs.c | |||
@@ -112,9 +112,9 @@ static ZFCP_DEV_ATTR(_feat, failed, S_IWUSR | S_IRUGO, \ | |||
112 | zfcp_sysfs_##_feat##_failed_show, \ | 112 | zfcp_sysfs_##_feat##_failed_show, \ |
113 | zfcp_sysfs_##_feat##_failed_store); | 113 | zfcp_sysfs_##_feat##_failed_store); |
114 | 114 | ||
115 | ZFCP_SYSFS_FAILED(zfcp_adapter, adapter, adapter, 44, 93); | 115 | ZFCP_SYSFS_FAILED(zfcp_adapter, adapter, adapter, "syafai1", "syafai2"); |
116 | ZFCP_SYSFS_FAILED(zfcp_port, port, port->adapter, 45, 96); | 116 | ZFCP_SYSFS_FAILED(zfcp_port, port, port->adapter, "sypfai1", "sypfai2"); |
117 | ZFCP_SYSFS_FAILED(zfcp_unit, unit, unit->port->adapter, 46, 97); | 117 | ZFCP_SYSFS_FAILED(zfcp_unit, unit, unit->port->adapter, "syufai1", "syufai2"); |
118 | 118 | ||
119 | static ssize_t zfcp_sysfs_port_rescan_store(struct device *dev, | 119 | static ssize_t zfcp_sysfs_port_rescan_store(struct device *dev, |
120 | struct device_attribute *attr, | 120 | struct device_attribute *attr, |
@@ -168,7 +168,7 @@ static ssize_t zfcp_sysfs_port_remove_store(struct device *dev, | |||
168 | goto out; | 168 | goto out; |
169 | } | 169 | } |
170 | 170 | ||
171 | zfcp_erp_port_shutdown(port, 0, 92, NULL); | 171 | zfcp_erp_port_shutdown(port, 0, "syprs_1", NULL); |
172 | zfcp_erp_wait(adapter); | 172 | zfcp_erp_wait(adapter); |
173 | zfcp_port_put(port); | 173 | zfcp_port_put(port); |
174 | zfcp_port_dequeue(port); | 174 | zfcp_port_dequeue(port); |
@@ -222,7 +222,7 @@ static ssize_t zfcp_sysfs_unit_add_store(struct device *dev, | |||
222 | 222 | ||
223 | retval = 0; | 223 | retval = 0; |
224 | 224 | ||
225 | zfcp_erp_unit_reopen(unit, 0, 94, NULL); | 225 | zfcp_erp_unit_reopen(unit, 0, "syuas_1", NULL); |
226 | zfcp_erp_wait(unit->port->adapter); | 226 | zfcp_erp_wait(unit->port->adapter); |
227 | zfcp_unit_put(unit); | 227 | zfcp_unit_put(unit); |
228 | out: | 228 | out: |
@@ -268,7 +268,7 @@ static ssize_t zfcp_sysfs_unit_remove_store(struct device *dev, | |||
268 | goto out; | 268 | goto out; |
269 | } | 269 | } |
270 | 270 | ||
271 | zfcp_erp_unit_shutdown(unit, 0, 95, NULL); | 271 | zfcp_erp_unit_shutdown(unit, 0, "syurs_1", NULL); |
272 | zfcp_erp_wait(unit->port->adapter); | 272 | zfcp_erp_wait(unit->port->adapter); |
273 | zfcp_unit_put(unit); | 273 | zfcp_unit_put(unit); |
274 | zfcp_unit_dequeue(unit); | 274 | zfcp_unit_dequeue(unit); |
@@ -318,10 +318,9 @@ zfcp_sysfs_unit_##_name##_latency_show(struct device *dev, \ | |||
318 | struct zfcp_unit *unit = sdev->hostdata; \ | 318 | struct zfcp_unit *unit = sdev->hostdata; \ |
319 | struct zfcp_latencies *lat = &unit->latencies; \ | 319 | struct zfcp_latencies *lat = &unit->latencies; \ |
320 | struct zfcp_adapter *adapter = unit->port->adapter; \ | 320 | struct zfcp_adapter *adapter = unit->port->adapter; \ |
321 | unsigned long flags; \ | ||
322 | unsigned long long fsum, fmin, fmax, csum, cmin, cmax, cc; \ | 321 | unsigned long long fsum, fmin, fmax, csum, cmin, cmax, cc; \ |
323 | \ | 322 | \ |
324 | spin_lock_irqsave(&lat->lock, flags); \ | 323 | spin_lock_bh(&lat->lock); \ |
325 | fsum = lat->_name.fabric.sum * adapter->timer_ticks; \ | 324 | fsum = lat->_name.fabric.sum * adapter->timer_ticks; \ |
326 | fmin = lat->_name.fabric.min * adapter->timer_ticks; \ | 325 | fmin = lat->_name.fabric.min * adapter->timer_ticks; \ |
327 | fmax = lat->_name.fabric.max * adapter->timer_ticks; \ | 326 | fmax = lat->_name.fabric.max * adapter->timer_ticks; \ |
@@ -329,7 +328,7 @@ zfcp_sysfs_unit_##_name##_latency_show(struct device *dev, \ | |||
329 | cmin = lat->_name.channel.min * adapter->timer_ticks; \ | 328 | cmin = lat->_name.channel.min * adapter->timer_ticks; \ |
330 | cmax = lat->_name.channel.max * adapter->timer_ticks; \ | 329 | cmax = lat->_name.channel.max * adapter->timer_ticks; \ |
331 | cc = lat->_name.counter; \ | 330 | cc = lat->_name.counter; \ |
332 | spin_unlock_irqrestore(&lat->lock, flags); \ | 331 | spin_unlock_bh(&lat->lock); \ |
333 | \ | 332 | \ |
334 | do_div(fsum, 1000); \ | 333 | do_div(fsum, 1000); \ |
335 | do_div(fmin, 1000); \ | 334 | do_div(fmin, 1000); \ |
@@ -487,7 +486,8 @@ static ssize_t zfcp_sysfs_adapter_q_full_show(struct device *dev, | |||
487 | struct zfcp_adapter *adapter = | 486 | struct zfcp_adapter *adapter = |
488 | (struct zfcp_adapter *) scsi_host->hostdata[0]; | 487 | (struct zfcp_adapter *) scsi_host->hostdata[0]; |
489 | 488 | ||
490 | return sprintf(buf, "%d\n", atomic_read(&adapter->qdio_outb_full)); | 489 | return sprintf(buf, "%d %llu\n", atomic_read(&adapter->qdio_outb_full), |
490 | (unsigned long long)adapter->req_q_util); | ||
491 | } | 491 | } |
492 | static DEVICE_ATTR(queue_full, S_IRUGO, zfcp_sysfs_adapter_q_full_show, NULL); | 492 | static DEVICE_ATTR(queue_full, S_IRUGO, zfcp_sysfs_adapter_q_full_show, NULL); |
493 | 493 | ||