* [Bug 10554] New: scsi_scan doesn't set the queue depth for tape drive
@ 2008-04-25 15:29 bugme-daemon
0 siblings, 0 replies; only message in thread
From: bugme-daemon @ 2008-04-25 15:29 UTC (permalink / raw)
To: linux-scsi
http://bugzilla.kernel.org/show_bug.cgi?id=10554
Summary: scsi_scan doesn't set the queue depth for tape drive
Product: SCSI Drivers
Version: 2.5
KernelVersion: 2.6.16
Platform: All
OS/Version: Linux
Tree: Mainline
Status: NEW
Severity: normal
Priority: P1
Component: Other
AssignedTo: scsi_drivers-other@kernel-bugs.osdl.org
ReportedBy: flerat@hi-stor.com
Latest working kernel version: 2.6.16
Distribution: Suse
Hardware Environment: IA64
Software Environment: Suse + Backup Software
Problem Description:
scsi_scan doesn't set the queue depth for tape drive.
I'm using an STK 9840B (scsi fiber tape drive) and when I try to acces with 2
driver on the same device, device report an error.
I'm using a software that monitor the tape drive quality. This software use the
"sg" driver to acces to tape drive. The backup software use "st" to read/ write
data.
When the backup software and my software acces in the same time the data
transfert failed.
I'm using a STK 9840B tape drive and when I test with IBM LTO1 it's work.
The main difference between the both drive is that STK doesn't support queue
command (qdepth=1 or 0) and IBM support queue qdepth > 1.
I'm using a qlogic fiber channel, when I'm force the ql2xmaxqdpeth to 1, all is
working very well. But this paramater is for all devices connected to Qlogic
Fiber channel. In my configuartion have 1TB a disk and performence is low due
to qdpeth=1.
On the scsi_scan.c, we have the method scsi_add_lun who read the CmdQue from
the inquiry and set the tagged flag:
if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
!(*bflags & BLIST_NOTQ))
sdev->tagged_supported = 1;
---> CmdQue = inq_result[7] & 2
STK: CmdQue = 0
IBM: CmdQue = 1
But according to www.t10.org and SPC-2:
"A command queuing (CMDQUE) bit of one indicates that the device supports
tagged tasks (command queuing) for this logical unit (see SAM-2). A value of
zero indicates the device server may support tagged tasks for this logical
unit (see the BQUE bit, above)."
Note the "may support tagged" and in fact if you look the BQUE bit:
STK: BQUE=0
IBM: BQUE=0
For www.t10.org:
BQUE=0, CmdQue=0 : No command queuing of any kind supported.
BQUE=0, CmdQue=1 : Command queuing with all types of task tags supported.
scsi_scan do this:
STK: sdev->tagged_supported = 0 and qdepth = ql2xmaxqdepth
IBM: sdev->tagged_supported = 1 and qdepth = ql2xmaxqdepth
For me, scsi_scan must read the BQUE bit and set the qdepth to 1 for STK and to
max for IBM.
Regards
--
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-25 15:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-25 15:29 [Bug 10554] New: scsi_scan doesn't set the queue depth for tape drive bugme-daemon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).