blk-mq, scsi-mq, UFS

2014-09-26 Thread Andras Kovacs
Hi all, could someone explain to me: - what is the difference between blk-mq and scsi-mq - why don't I observe large speedups when running the same tiotests on Linux v3.12 (which has no blk-mq) and Linux v3.14 (which does have blk-mq) on a Xilinx Zynq development board (the two Linux versions are

Re: blk-mq, scsi-mq, UFS

2014-09-26 Thread Andras Kovacs
Andras Kovacs freemail.hu> writes: reading/writing to the target SDD (which is driven through the UFS driver)? Of course I meant SSD. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo

Re: blk-mq, scsi-mq, UFS

2014-09-27 Thread Andras Kovacs
Matias Bjorling bjorling.me> writes: Thank you for your answers; now things are somewhat clearer. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

UNMAP command parameter list

2014-11-07 Thread Andras Kovacs
Hi all, I'm trying to see what parameters are passed to the UFS driver from the SCSI midlayer when an UNMAP command is issued. In the UFS driver I can see the 10 byte command itself in the unsigned char *cmnd field of the struct scsi_cmnd, and it tells me that the parameter list length is 24

Re: UNMAP command parameter list

2014-11-08 Thread Andras Kovacs
Elliott, Robert (Server Storage hp.com> writes: > That is the data transferred for the command, not in the > command descriptor block itself. Thank you. Then I guess I'll find the Paramerer List in the struct scsi_data_buffer sdb variable (within struct scsi_cmnd). Will check on Monday. -- To

Re: UNMAP command parameter list

2014-11-10 Thread Andras Kovacs
Andras Kovacs fixstars.com> writes: > > Elliott, Robert (Server Storage hp.com> writes: > > > That is the data transferred for the command, not in the > > command descriptor block itself. > > Thank you. Then I guess I'll find the Paramerer List in the

Re: UNMAP command parameter list

2014-11-10 Thread Andras Kovacs
Christoph Hellwig infradead.org> writes: > > On Mon, Nov 10, 2014 at 11:44:39AM -0500, Martin K. Petersen wrote: > > You'll have to traverse scatterlist and extract the descriptor from > > there. You can use scsi_for_each_sg() to walk the list. Thank you; I'm working on it. > > > > If you o