Displaying 1 result from an estimated 1 matches for "suggest_abort".
2013 Aug 16
0
RocketRAID cards (actually, solved)
...re IRQ_HANDLED
was defined, presuming it's in use elsewhere, and I'm making minimal
changes to the code.
/* #ifndef IRQ_HANDLED */
#ifndef _LINUX_IRQRETURN_H
4. In osm_linux.c, I changed from the first line below to the second.
/* SCpnt->result = ((DRIVER_INVALID|SUGGEST_ABORT)<<24) |
(DID_ABORT<<16); */
SCpnt->result = ((DRIVER_INVALID|TASK_ABORTED)<<24) |
(DID_ABORT<<16); Again, some defines are long gone. I chose
TASK_ABORTED because it
had the same hex value as SUGGEST_ABORT, 0x20, and seemed appropriate.
Then it was cd...