[PATCH] ide-tape locks up when loaded in kernel 2.4.22

From: Stuart Hayes
Date: Mon Sep 15 2003 - 17:58:48 EST


Resending patch... the text got mangled on the last message.
Thanks
Stuart
Stuart_Hayes@xxxxxxxx



diff -BurN linux-vanilla/drivers/ide/ide-tape.c linux-idetape-quickpatch/drivers/ide/ide-tape.c
--- linux-vanilla/drivers/ide/ide-tape.c 2003-06-13 09:51:33.000000000 -0500
+++ linux-idetape-quickpatch/drivers/ide/ide-tape.c 2003-09-15 13:08:36.000000000 -0500
@@ -1,5 +1,5 @@
/*
- * linux/drivers/ide/ide-tape.c Version 1.17b Dec, 2002
+ * linux/drivers/ide/ide-tape.c Version 1.17c Sep, 2003
*
* Copyright (C) 1995 - 1999 Gadi Oxman <gadio@xxxxxxxxxxxxxxxx>
*
@@ -313,6 +313,9 @@
* Cosmetic fixes to miscellaneous debugging output messages.
* Set the minimum /proc/ide/hd?/settings values for "pipeline",
* "pipeline_min", and "pipeline_max" to 1.
+ * Ver 1.17c Sep 2003 Stuart Hayes <stuart_hayes@xxxxxxxx>
+ * Initialized "feature" in idetape_issue_packet_command
+ * (this was causing lockups on certain systems)
*
* Here are some words from the first releases of hd.c, which are quoted
* in ide.c and apply here as well:
@@ -422,7 +425,7 @@
* sharing a (fast) ATA-2 disk with any (slow) new ATAPI device.
*/

-#define IDETAPE_VERSION "1.17b-ac1"
+#define IDETAPE_VERSION "1.17c"

#include <linux/config.h>
#include <linux/module.h>
@@ -2367,6 +2370,8 @@
atapi_feature_t feature;
atapi_bcount_t bcount;

+ feature.all = 0;
+
#if IDETAPE_DEBUG_BUGS
if (tape->pc->c[0] == IDETAPE_REQUEST_SENSE_CMD &&
pc->c[0] == IDETAPE_REQUEST_SENSE_CMD) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/