The patch titled bug in gdth.c crashing machine has been removed from the -mm tree. Its filename was bug-in-gdthc-crashing-machine.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: bug in gdth.c crashing machine From: Joerg Dorchain <joerg@xxxxxxxxxxxx> The current gdth driver crashes the machine with a panic() when accessing certain tape drives, really not a good thing for stable. This patch fixes it, tested by me and acknowledged by Achim. See http://lkml.org/lkml/2006/10/13/60 and http://lkml.org/lkml/2006/10/12/35 for further reference. Signed-off-by: Joerg Dorchain <joerg@xxxxxxxxxxxx> Acked-by: "Leubner, Achim" <Achim_Leubner@xxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/gdth.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN drivers/scsi/gdth.c~bug-in-gdthc-crashing-machine drivers/scsi/gdth.c --- a/drivers/scsi/gdth.c~bug-in-gdthc-crashing-machine +++ a/drivers/scsi/gdth.c @@ -3091,6 +3091,7 @@ static int gdth_fill_raw_cmd(int hanum,S cmdp->u.raw64.direction = gdth_direction_tab[scp->cmnd[0]]==DOU ? GDTH_DATA_OUT:GDTH_DATA_IN; memcpy(cmdp->u.raw64.cmd,scp->cmnd,16); + cmdp->u.raw64.sg_ranz = 0; } else { cmdp->u.raw.reserved = 0; cmdp->u.raw.mdisc_time = 0; @@ -3107,6 +3108,7 @@ static int gdth_fill_raw_cmd(int hanum,S cmdp->u.raw.direction = gdth_direction_tab[scp->cmnd[0]]==DOU ? GDTH_DATA_OUT:GDTH_DATA_IN; memcpy(cmdp->u.raw.cmd,scp->cmnd,12); + cmdp->u.raw.sg_ranz = 0; } if (scp->use_sg) { _ Patches currently in -mm which might be from joerg@xxxxxxxxxxxx are git-scsi-rc-fixes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html