mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
1194b5ce57
Unlike the legacy I/O path, scsi-mq preallocates a large array to hold the scatterlist for each request. This static allocation can consume substantial amounts of memory on modern controllers which support a large number of concurrently outstanding requests. To facilitate a switch to a smaller static allocation combined with a dynamic allocation for requests that need it, we need to make sure all SCSI drivers handle chained scatterlists correctly. Convert remaining drivers that directly dereference the scatterlist array to using the iterator functions. [mkp: clarified commit message] Cc: Oliver Neukum <oliver@neukum.org> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: linux-usb@vger.kernel.org Reviewed-by: Bart Van Assche <bvanassche@acm.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
56 lines
1.0 KiB
C
56 lines
1.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Driver for Microtek Scanmaker X6 USB scanner and possibly others.
|
|
*
|
|
* (C) Copyright 2000 John Fremlin <vii@penguinpowered.com>
|
|
* (C) Copyright 2000 Oliver Neukum <Oliver.Neukum@lrz.uni-muenchen.de>
|
|
*
|
|
* See microtek.c for history
|
|
*
|
|
*/
|
|
|
|
typedef void (*mts_scsi_cmnd_callback)(struct scsi_cmnd *);
|
|
|
|
|
|
struct mts_transfer_context
|
|
{
|
|
struct mts_desc *instance;
|
|
mts_scsi_cmnd_callback final_callback;
|
|
struct scsi_cmnd *srb;
|
|
|
|
void *data;
|
|
unsigned data_length;
|
|
int data_pipe;
|
|
struct scatterlist *curr_sg;
|
|
|
|
u8 *scsi_status; /* status returned from ep_response after command completion */
|
|
};
|
|
|
|
|
|
struct mts_desc {
|
|
struct mts_desc *next;
|
|
struct mts_desc *prev;
|
|
|
|
struct usb_device *usb_dev;
|
|
struct usb_interface *usb_intf;
|
|
|
|
/* Endpoint addresses */
|
|
u8 ep_out;
|
|
u8 ep_response;
|
|
u8 ep_image;
|
|
|
|
struct Scsi_Host *host;
|
|
|
|
struct urb *urb;
|
|
struct mts_transfer_context context;
|
|
};
|
|
|
|
|
|
#define MTS_EP_OUT 0x1
|
|
#define MTS_EP_RESPONSE 0x2
|
|
#define MTS_EP_IMAGE 0x3
|
|
#define MTS_EP_TOTAL 0x3
|
|
|
|
#define MTS_SCSI_ERR_MASK ~0x3fu
|
|
|