Re: [PATCH] scsi: sg: off by one in sg_ioctl()

2017-08-22 Thread Martin K. Petersen
Dan, > If "val" is SG_MAX_QUEUE then we are one element beyond the end of the > "rinfo" array so the > should be >=. Applied to 4.13/scsi-fixes. Thanks! -- Martin K. Petersen Oracle Linux Engineering

Re: [PATCH] scsi: sg: off by one in sg_ioctl()

2017-08-22 Thread Douglas Gilbert
On 2017-08-17 03:09 AM, Dan Carpenter wrote: If "val" is SG_MAX_QUEUE then we are one element beyond the end of the "rinfo" array so the > should be >=. Fixes: 109bade9c625 ("scsi: sg: use standard lists for sg_requests") Signed-off-by: Dan Carpenter Acked-by:

[PATCH] scsi: sg: off by one in sg_ioctl()

2017-08-17 Thread Dan Carpenter
If "val" is SG_MAX_QUEUE then we are one element beyond the end of the "rinfo" array so the > should be >=. Fixes: 109bade9c625 ("scsi: sg: use standard lists for sg_requests") Signed-off-by: Dan Carpenter diff --git a/drivers/scsi/sg.c b/drivers/scsi/sg.c index