public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ide-tape locks up when loaded in kernel 2.4.22
@ 2003-09-15 20:36 Stuart_Hayes
  0 siblings, 0 replies; 2+ messages in thread
From: Stuart_Hayes @ 2003-09-15 20:36 UTC (permalink / raw)
  To: marcelo; +Cc: linux-kernel


With certain configurations, loading ide-tape will lock up the system.  This
is caused by the "feature" variable in idetape_issue_packet_command not
being initialized (to 0).  The patch just sets feature to 0 at the beginning
of the function.

This patch is for kernel 2.4.22 (though there were no changes to ide-tape.c
between 2.4.22 and 2.4.23-pre4).

Thanks
Stuart
stuart_hayes@dell.com




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@netvision.net.il>
  *
@@ -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@dell.com>
+ *			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) {


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH] ide-tape locks up when loaded in kernel 2.4.22
@ 2003-09-15 22:57 Stuart Hayes
  0 siblings, 0 replies; 2+ messages in thread
From: Stuart Hayes @ 2003-09-15 22:57 UTC (permalink / raw)
  To: marcelo; +Cc: linux-kernel

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



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@netvision.net.il>
  *
@@ -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@dell.com>
+ *			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) {

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-09-15 22:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-09-15 22:57 [PATCH] ide-tape locks up when loaded in kernel 2.4.22 Stuart Hayes
  -- strict thread matches above, loose matches on Subject: below --
2003-09-15 20:36 Stuart_Hayes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox