6708bb27bb
This patch contains the squashed version of forth round series cleanups from Andy and Christoph following the post heavy lifting in the preceeding: 'Eliminate usage of struct se_mem' and 'Make all control CDBs scatter-gather' changes. This also includes a conversion of target core and the v3.0 mainline fabric modules (loopback and tcm_fc) to use pr_debug and the CONFIG_DYNAMIC_DEBUG infrastructure! These have been squashed into this third and final round for v3.1. target: Remove ifdeffed code in t_g_process_write target: Remove direct ramdisk code target: Rename task_sg_num to task_sg_nents target: Remove custom debug macros for pr_debug. Use pr_err(). target: Remove custom debug macros in mainline fabrics target: Set WSNZ=1 in block limits VPD. Abort if WRITE_SAME sectors = 0 target: Remove transport do_se_mem_map callback target: Further simplify transport_free_pages target: Redo task allocation return value handling target: Remove extra parentheses target: change alloc_task call to take *cdb, not *cmd (nab: Fix bogus struct file assignments in fd_do_readv and fd_do_writev) Signed-off-by: Andy Grover <agrover@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
67 lines
1.7 KiB
C
67 lines
1.7 KiB
C
#ifndef TARGET_CORE_RD_H
|
|
#define TARGET_CORE_RD_H
|
|
|
|
#define RD_HBA_VERSION "v4.0"
|
|
#define RD_DR_VERSION "4.0"
|
|
#define RD_MCP_VERSION "4.0"
|
|
|
|
/* Largest piece of memory kmalloc can allocate */
|
|
#define RD_MAX_ALLOCATION_SIZE 65536
|
|
#define RD_DEVICE_QUEUE_DEPTH 32
|
|
#define RD_MAX_DEVICE_QUEUE_DEPTH 128
|
|
#define RD_BLOCKSIZE 512
|
|
#define RD_MAX_SECTORS 1024
|
|
|
|
/* Used in target_core_init_configfs() for virtual LUN 0 access */
|
|
int __init rd_module_init(void);
|
|
void rd_module_exit(void);
|
|
|
|
#define RRF_EMULATE_CDB 0x01
|
|
#define RRF_GOT_LBA 0x02
|
|
|
|
struct rd_request {
|
|
struct se_task rd_task;
|
|
|
|
/* SCSI CDB from iSCSI Command PDU */
|
|
unsigned char rd_scsi_cdb[TCM_MAX_COMMAND_SIZE];
|
|
/* Offset from start of page */
|
|
u32 rd_offset;
|
|
/* Starting page in Ramdisk for request */
|
|
u32 rd_page;
|
|
/* Total number of pages needed for request */
|
|
u32 rd_page_count;
|
|
/* Scatterlist count */
|
|
u32 rd_size;
|
|
} ____cacheline_aligned;
|
|
|
|
struct rd_dev_sg_table {
|
|
u32 page_start_offset;
|
|
u32 page_end_offset;
|
|
u32 rd_sg_count;
|
|
struct scatterlist *sg_table;
|
|
} ____cacheline_aligned;
|
|
|
|
#define RDF_HAS_PAGE_COUNT 0x01
|
|
|
|
struct rd_dev {
|
|
int rd_direct;
|
|
u32 rd_flags;
|
|
/* Unique Ramdisk Device ID in Ramdisk HBA */
|
|
u32 rd_dev_id;
|
|
/* Total page count for ramdisk device */
|
|
u32 rd_page_count;
|
|
/* Number of SG tables in sg_table_array */
|
|
u32 sg_table_count;
|
|
u32 rd_queue_depth;
|
|
/* Array of rd_dev_sg_table_t containing scatterlists */
|
|
struct rd_dev_sg_table *sg_table_array;
|
|
/* Ramdisk HBA device is connected to */
|
|
struct rd_host *rd_host;
|
|
} ____cacheline_aligned;
|
|
|
|
struct rd_host {
|
|
u32 rd_host_dev_id_count;
|
|
u32 rd_host_id; /* Unique Ramdisk Host ID */
|
|
} ____cacheline_aligned;
|
|
|
|
#endif /* TARGET_CORE_RD_H */
|