commit "374f8fdea4aabec8e918cf9951e51bfa4f570ea8" has fixed a problem by jumping to the correct label,but the previous incorrect label was not removed and it was still there in the code unused.
Signed-off-by: Sudip Mukherjee <[email protected]> --- block/scsi_ioctl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/block/scsi_ioctl.c b/block/scsi_ioctl.c index cc7927a..1e053d9 100644 --- a/block/scsi_ioctl.c +++ b/block/scsi_ioctl.c @@ -517,7 +517,6 @@ int sg_scsi_ioctl(struct request_queue *q, struct gendisk *disk, fmode_t mode, blk_execute_rq(q, disk, rq, 0); -out: err = rq->errors & 0xff; /* only 8 bit SCSI status */ if (err) { if (rq->sense_len && rq->sense) { -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

