[PATCH] Split struct request ->flags into two parts
Right now ->flags is a bit of a mess: some are request types, and others are just modifiers. Clean this up by splitting it into ->cmd_type and ->cmd_flags. This allows introduction of generic Linux block message types, useful for sending generic Linux commands to block devices. Signed-off-by: Jens Axboe <axboe@suse.de>
This commit is contained in:
@@ -524,7 +524,7 @@ static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
|
||||
static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted, Scsi_Cmnd *cmd,
|
||||
int write_flag)
|
||||
{
|
||||
if(cmd->request->flags & REQ_CMD)
|
||||
if(blk_fs_request(cmd->request))
|
||||
return wanted;
|
||||
else
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user