cregit-Linux how code gets into the kernel

Release 4.14 include/scsi/scsi_request.h

Directory: include/scsi
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SCSI_SCSI_REQUEST_H

#define _SCSI_SCSI_REQUEST_H

#include <linux/blk-mq.h>


#define BLK_MAX_CDB	16


struct scsi_request {
	
unsigned char	__cmd[BLK_MAX_CDB];
	
unsigned char	*cmd;
	
unsigned short	cmd_len;
	
int		result;
	
unsigned int	sense_len;
	
unsigned int	resid_len;	/* residual count */
	
int		retries;
	
void		*sense;
};


static inline struct scsi_request *scsi_req(struct request *rq) { return blk_mq_rq_to_pdu(rq); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig20100.00%1100.00%
Total20100.00%1100.00%


static inline void scsi_req_free_cmd(struct scsi_request *req) { if (req->cmd != req->__cmd) kfree(req->cmd); }

Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig29100.00%1100.00%
Total29100.00%1100.00%

void scsi_req_init(struct scsi_request *req); #endif /* _SCSI_SCSI_REQUEST_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Christoph Hellwig11297.39%360.00%
Bart Van Assche21.74%120.00%
Greg Kroah-Hartman10.87%120.00%
Total115100.00%5100.00%
Directory: include/scsi
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.