ChangeLog.megaraid 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. Release Date : Fri May 19 09:31:45 EST 2006 - Seokmann Ju <sju@lsil.com>
  2. Current Version : 2.20.4.9 (scsi module), 2.20.2.6 (cmm module)
  3. Older Version : 2.20.4.8 (scsi module), 2.20.2.6 (cmm module)
  4. 1. Fixed a bug in megaraid_init_mbox().
  5. Customer reported "garbage in file on x86_64 platform".
  6. Root Cause: the driver registered controllers as 64-bit DMA capable
  7. for those which are not support it.
  8. Fix: Made change in the function inserting identification machanism
  9. identifying 64-bit DMA capable controllers.
  10. > -----Original Message-----
  11. > From: Vasily Averin [mailto:vvs@sw.ru]
  12. > Sent: Thursday, May 04, 2006 2:49 PM
  13. > To: linux-scsi@vger.kernel.org; Kolli, Neela; Mukker, Atul;
  14. > Ju, Seokmann; Bagalkote, Sreenivas;
  15. > James.Bottomley@SteelEye.com; devel@openvz.org
  16. > Subject: megaraid_mbox: garbage in file
  17. >
  18. > Hello all,
  19. >
  20. > I've investigated customers claim on the unstable work of
  21. > their node and found a
  22. > strange effect: reading from some files leads to the
  23. > "attempt to access beyond end of device" messages.
  24. >
  25. > I've checked filesystem, memory on the node, motherboard BIOS
  26. > version, but it
  27. > does not help and issue still has been reproduced by simple
  28. > file reading.
  29. >
  30. > Reproducer is simple:
  31. >
  32. > echo 0xffffffff >/proc/sys/dev/scsi/logging_level ;
  33. > cat /vz/private/101/root/etc/ld.so.cache >/tmp/ttt ;
  34. > echo 0 >/proc/sys/dev/scsi/logging
  35. >
  36. > It leads to the following messages in dmesg
  37. >
  38. > sd_init_command: disk=sda, block=871769260, count=26
  39. > sda : block=871769260
  40. > sda : reading 26/26 512 byte blocks.
  41. > scsi_add_timer: scmd: f79ed980, time: 7500, (c02b1420)
  42. > sd 0:1:0:0: send 0xf79ed980 sd 0:1:0:0:
  43. > command: Read (10): 28 00 33 f6 24 ac 00 00 1a 00
  44. > buffer = 0xf7cfb540, bufflen = 13312, done = 0xc0366b40,
  45. > queuecommand 0xc0344010
  46. > leaving scsi_dispatch_cmnd()
  47. > scsi_delete_timer: scmd: f79ed980, rtn: 1
  48. > sd 0:1:0:0: done 0xf79ed980 SUCCESS 0 sd 0:1:0:0:
  49. > command: Read (10): 28 00 33 f6 24 ac 00 00 1a 00
  50. > scsi host busy 1 failed 0
  51. > sd 0:1:0:0: Notifying upper driver of completion (result 0)
  52. > sd_rw_intr: sda: res=0x0
  53. > 26 sectors total, 13312 bytes done.
  54. > use_sg is 4
  55. > attempt to access beyond end of device
  56. > sda6: rw=0, want=1044134458, limit=951401367
  57. > Buffer I/O error on device sda6, logical block 522067228
  58. > attempt to access beyond end of device
  59. Release Date : Mon Apr 11 12:27:22 EST 2006 - Seokmann Ju <sju@lsil.com>
  60. Current Version : 2.20.4.8 (scsi module), 2.20.2.6 (cmm module)
  61. Older Version : 2.20.4.7 (scsi module), 2.20.2.6 (cmm module)
  62. 1. Fixed a bug in megaraid_reset_handler().
  63. Customer reported "Unable to handle kernel NULL pointer dereference
  64. at virtual address 00000000" when system goes to reset condition
  65. for some reason. It happened randomly.
  66. Root Cause: in the megaraid_reset_handler(), there is possibility not
  67. returning pending packets in the pend_list if there are multiple
  68. pending packets.
  69. Fix: Made the change in the driver so that it will return all packets
  70. in the pend_list.
  71. 2. Added change request.
  72. As found in the following URL, rmb() only didn't help the
  73. problem. I had to increase the loop counter to 0xFFFFFF. (6 F's)
  74. http://marc.theaimsgroup.com/?l=linux-scsi&m=110971060502497&w=2
  75. I attached a patch for your reference, too.
  76. Could you check and get this fix in your driver?
  77. Best Regards,
  78. Jun'ichi Nomura
  79. Release Date : Fri Nov 11 12:27:22 EST 2005 - Seokmann Ju <sju@lsil.com>
  80. Current Version : 2.20.4.7 (scsi module), 2.20.2.6 (cmm module)
  81. Older Version : 2.20.4.6 (scsi module), 2.20.2.6 (cmm module)
  82. 1. Sorted out PCI IDs to remove megaraid support overlaps.
  83. Based on the patch from Daniel, sorted out PCI IDs along with
  84. charactor node name change from 'megadev' to 'megadev_legacy' to avoid
  85. conflict.
  86. ---
  87. Hopefully we'll be getting the build restriction zapped much sooner,
  88. but we should also be thinking about totally removing the hardware
  89. support overlap in the megaraid drivers.
  90. This patch pencils in a date of Feb 06 for this, and performs some
  91. printk abuse in hope that existing legacy users might pick up on what's
  92. going on.
  93. Signed-off-by: Daniel Drake <dsd@gentoo.org>
  94. ---
  95. 2. Fixed a issue: megaraid always fails to reset handler.
  96. ---
  97. I found that the megaraid driver always fails to reset the
  98. adapter with the following message:
  99. megaraid: resetting the host...
  100. megaraid mbox: reset sequence completed successfully
  101. megaraid: fast sync command timed out
  102. megaraid: reservation reset failed
  103. when the "Cluster mode" of the adapter BIOS is enabled.
  104. So, whenever the reset occurs, the adapter goes to
  105. offline and just become unavailable.
  106. Jun'ichi Nomura [mailto:jnomura@mtc.biglobe.ne.jp]
  107. ---
  108. Release Date : Mon Mar 07 12:27:22 EST 2005 - Seokmann Ju <sju@lsil.com>
  109. Current Version : 2.20.4.6 (scsi module), 2.20.2.6 (cmm module)
  110. Older Version : 2.20.4.5 (scsi module), 2.20.2.5 (cmm module)
  111. 1. Added IOCTL backward compatibility.
  112. Convert megaraid_mm driver to new compat_ioctl entry points.
  113. I don't have easy access to hardware, so only compile tested.
  114. - Signed-off-by:Andi Kleen <ak@muc.de>
  115. 2. megaraid_mbox fix: wrong order of arguments in memset()
  116. That, BTW, shows why cross-builds are useful-the only indication of
  117. problem had been a new warning showing up in sparse output on alpha
  118. build (number of exceeding 256 got truncated).
  119. - Signed-off-by: Al Viro
  120. <viro@parcelfarce.linux.theplanet.co.uk>
  121. 3. Convert pci_module_init to pci_register_driver
  122. Convert from pci_module_init to pci_register_driver
  123. (from:http://kerneljanitors.org/TODO)
  124. - Signed-off-by: Domen Puncer <domen@coderock.org>
  125. 4. Use the pre defined DMA mask constants from dma-mapping.h
  126. Use the DMA_{64,32}BIT_MASK constants from dma-mapping.h when calling
  127. pci_set_dma_mask() or pci_set_consistend_dma_mask(). See
  128. http://marc.theaimsgroup.com/?t=108001993000001&r=1&w=2 for more
  129. details.
  130. Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
  131. Signed-off-by: Domen Puncer <domen@coderock.org>
  132. 5. Remove SSID checking for Dobson, Lindsay, and Verde based products.
  133. Checking the SSVID/SSID for controllers which have Dobson, Lindsay,
  134. and Verde is unnecessary because device ID has been assigned by LSI
  135. and it is unique value. So, all controllers with these IOPs have to be
  136. supported by the driver regardless SSVID/SSID.
  137. 6. Date Thu, 27 Jan 2005 04:31:09 +0100
  138. From Herbert Poetzl <>
  139. Subject RFC: assert_spin_locked() for 2.6
  140. Greetings!
  141. overcautious programming will kill your kernel ;)
  142. ever thought about checking a spin_lock or even
  143. asserting that it must be held (maybe just for
  144. spinlock debugging?) ...
  145. there are several checks present in the kernel
  146. where somebody does a variation on the following:
  147. BUG_ON(!spin_is_locked(&some_lock));
  148. so what's wrong about that? nothing, unless you
  149. compile the code with CONFIG_DEBUG_SPINLOCK but
  150. without CONFIG_SMP ... in which case the BUG()
  151. will kill your kernel ...
  152. maybe it's not advised to make such assertions,
  153. but here is a solution which works for me ...
  154. (compile tested for sh, x86_64 and x86, boot/run
  155. tested for x86 only)
  156. best,
  157. Herbert
  158. - Herbert Poetzl <herbert@13thfloor.at>, Thu, 27 Jan 2005
  159. Release Date : Thu Feb 03 12:27:22 EST 2005 - Seokmann Ju <sju@lsil.com>
  160. Current Version : 2.20.4.5 (scsi module), 2.20.2.5 (cmm module)
  161. Older Version : 2.20.4.4 (scsi module), 2.20.2.4 (cmm module)
  162. 1. Modified name of two attributes in scsi_host_template.
  163. On Wed, 2005-02-02 at 10:56 -0500, Ju, Seokmann wrote:
  164. > + .sdev_attrs = megaraid_device_attrs,
  165. > + .shost_attrs = megaraid_class_device_attrs,
  166. These are, perhaps, slightly confusing names.
  167. The terms device and class_device have well defined meanings in the
  168. generic device model, neither of which is what you mean here.
  169. Why not simply megaraid_sdev_attrs and megaraid_shost_attrs?
  170. Other than this, it looks fine to me too.
  171. Release Date : Thu Jan 27 00:01:03 EST 2005 - Atul Mukker <atulm@lsil.com>
  172. Current Version : 2.20.4.4 (scsi module), 2.20.2.5 (cmm module)
  173. Older Version : 2.20.4.3 (scsi module), 2.20.2.4 (cmm module)
  174. 1. Bump up the version of scsi module due to its conflict.
  175. Release Date : Thu Jan 21 00:01:03 EST 2005 - Atul Mukker <atulm@lsil.com>
  176. Current Version : 2.20.4.3 (scsi module), 2.20.2.5 (cmm module)
  177. Older Version : 2.20.4.2 (scsi module), 2.20.2.4 (cmm module)
  178. 1. Remove driver ioctl for logical drive to scsi address translation and
  179. replace with the sysfs attribute. To remove drives and change
  180. capacity, application shall now use the device attribute to get the
  181. logical drive number for a scsi device. For adding newly created
  182. logical drives, class device attribute would be required to uniquely
  183. identify each controller.
  184. - Atul Mukker <atulm@lsil.com>
  185. "James, I've been thinking about this a little more, and you may be on
  186. to something here. Let each driver add files as such:"
  187. - Matt Domsch <Matt_Domsch@dell.com>, 12.15.2004
  188. linux-scsi mailing list
  189. "Then, if you simply publish your LD number as an extra parameter of
  190. the device, you can look through /sys to find it."
  191. - James Bottomley <James.Bottomley@SteelEye.com>, 01.03.2005
  192. linux-scsi mailing list
  193. "I don't see why not ... it's your driver, you can publish whatever
  194. extra information you need as scsi_device attributes; that was one of
  195. the designs of the extensible attribute system."
  196. - James Bottomley <James.Bottomley@SteelEye.com>, 01.06.2005
  197. linux-scsi mailing list
  198. 2. Add AMI megaraid support - Brian King <brking@charter.net>
  199. PCI_VENDOR_ID_AMI, PCI_DEVICE_ID_AMI_MEGARAID3,
  200. PCI_VENDOR_ID_AMI, PCI_SUBSYS_ID_PERC3_DC,
  201. 3. Make some code static - Adrian Bunk <bunk@stusta.de>
  202. Date: Mon, 15 Nov 2004 03:14:57 +0100
  203. The patch below makes some needlessly global code static.
  204. -wait_queue_head_t wait_q;
  205. +static wait_queue_head_t wait_q;
  206. Signed-off-by: Adrian Bunk <bunk@stusta.de>
  207. 4. Added NEC ROMB support - NEC MegaRAID PCI Express ROMB controller
  208. PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_MEGARAID_NEC_ROMB_2E,
  209. PCI_SUBSYS_ID_NEC, PCI_SUBSYS_ID_MEGARAID_NEC_ROMB_2E,
  210. 5. Fixed Tape drive issue : For any Direct CDB command to physical device
  211. including tape, timeout value set by driver was 10 minutes. With this
  212. value, most of command will return within timeout. However, for those
  213. command like ERASE or FORMAT, it takes more than an hour depends on
  214. capacity of the device and the command could be terminated before it
  215. completes.
  216. To address this issue, the 'timeout' field in the DCDB command will
  217. have NO TIMEOUT (i.e., 4) value as its timeout on DCDB command.
  218. Release Date : Thu Dec 9 19:10:23 EST 2004
  219. - Sreenivas Bagalkote <sreenib@lsil.com>
  220. Current Version : 2.20.4.2 (scsi module), 2.20.2.4 (cmm module)
  221. Older Version : 2.20.4.1 (scsi module), 2.20.2.3 (cmm module)
  222. i. Introduced driver ioctl that returns scsi address for a given ld.
  223. "Why can't the existing sysfs interfaces be used to do this?"
  224. - Brian King (brking@us.ibm.com)
  225. "I've looked into solving this another way, but I cannot see how
  226. to get this driver-private mapping of logical drive number-> HCTL
  227. without putting code something like this into the driver."
  228. "...and by providing a mapping a function to userspace, the driver
  229. is free to change its mapping algorithm in the future if necessary .."
  230. - Matt Domsch (Matt_Domsch@dell.com)
  231. Release Date : Thu Dec 9 19:02:14 EST 2004 - Sreenivas Bagalkote <sreenib@lsil.com>
  232. Current Version : 2.20.4.1 (scsi module), 2.20.2.3 (cmm module)
  233. Older Version : 2.20.4.1 (scsi module), 2.20.2.2 (cmm module)
  234. i. Fix a bug in kioc's dma buffer deallocation
  235. Release Date : Thu Nov 4 18:24:56 EST 2004 - Sreenivas Bagalkote <sreenib@lsil.com>
  236. Current Version : 2.20.4.1 (scsi module), 2.20.2.2 (cmm module)
  237. Older Version : 2.20.4.0 (scsi module), 2.20.2.1 (cmm module)
  238. i. Handle IOCTL cmd timeouts more properly.
  239. ii. pci_dma_sync_{sg,single}_for_cpu was introduced into megaraid_mbox
  240. incorrectly (instead of _for_device). Changed to appropriate
  241. pci_dma_sync_{sg,single}_for_device.
  242. Release Date : Wed Oct 06 11:15:29 EDT 2004 - Sreenivas Bagalkote <sreenib@lsil.com>
  243. Current Version : 2.20.4.0 (scsi module), 2.20.2.1 (cmm module)
  244. Older Version : 2.20.4.0 (scsi module), 2.20.2.0 (cmm module)
  245. i. Remove CONFIG_COMPAT around register_ioctl32_conversion
  246. Release Date : Mon Sep 27 22:15:07 EDT 2004 - Atul Mukker <atulm@lsil.com>
  247. Current Version : 2.20.4.0 (scsi module), 2.20.2.0 (cmm module)
  248. Older Version : 2.20.3.1 (scsi module), 2.20.2.0 (cmm module)
  249. i. Fix data corruption. Because of a typo in the driver, the IO packets
  250. were wrongly shared by the ioctl path. This causes a whole IO command
  251. to be replaced by an incoming ioctl command.
  252. Release Date : Tue Aug 24 09:43:35 EDT 2004 - Atul Mukker <atulm@lsil.com>
  253. Current Version : 2.20.3.1 (scsi module), 2.20.2.0 (cmm module)
  254. Older Version : 2.20.3.0 (scsi module), 2.20.2.0 (cmm module)
  255. i. Function reordering so that inline functions are defined before they
  256. are actually used. It is now mandatory for GCC 3.4.1 (current stable)
  257. Declare some heavy-weight functions to be non-inlined,
  258. megaraid_mbox_build_cmd, megaraid_mbox_runpendq,
  259. megaraid_mbox_prepare_pthru, megaraid_mbox_prepare_epthru,
  260. megaraid_busywait_mbox
  261. - Andrew Morton <akpm@osdl.org>, 08.19.2004
  262. linux-scsi mailing list
  263. "Something else to clean up after inclusion: every instance of an
  264. inline function is actually rendered as a full function call, because
  265. the function is always used before it is defined. Atul, please
  266. re-arrange the code to eliminate the need for most (all) of the
  267. function prototypes at the top of each file, and define (not just
  268. declare with a prototype) each inline function before its first use"
  269. - Matt Domsch <Matt_Domsch@dell.com>, 07.27.2004
  270. linux-scsi mailing list
  271. ii. Display elapsed time (countdown) while waiting for FW to boot.
  272. iii. Module compilation reorder in Makefile so that unresolved symbols do
  273. not occur when driver is compiled non-modular.
  274. Patrick J. LoPresti <patl@users.sourceforge.net>, 8.22.2004
  275. linux-scsi mailing list
  276. Release Date : Thu Aug 19 09:58:33 EDT 2004 - Atul Mukker <atulm@lsil.com>
  277. Current Version : 2.20.3.0 (scsi module), 2.20.2.0 (cmm module)
  278. Older Version : 2.20.2.0 (scsi module), 2.20.1.0 (cmm module)
  279. i. When copying the mailbox packets, copy only first 14 bytes (for 32-bit
  280. mailboxes) and only first 22 bytes (for 64-bit mailboxes). This is to
  281. avoid getting the stale values for busy bit. We want to set the busy
  282. bit just before issuing command to the FW.
  283. ii. In the reset handling, if the reseted command is not owned by the
  284. driver, do not (wrongly) print information for the "attached" driver
  285. packet.
  286. iii. Have extended wait when issuing command in synchronous mode. This is
  287. required for the cases where the option ROM is disabled and there is
  288. no BIOS to start the controller. The FW starts to boot after receiving
  289. the first command from the driver. The current driver has 1 second
  290. timeout for the synchronous commands, which is far less than what is
  291. actually required. We now wait up to MBOX_RESET_TIME (180 seconds) for
  292. FW boot process.
  293. iv. In megaraid_mbox_product_info, clear the mailbox contents completely
  294. before preparing the command for inquiry3. This is to ensure that the
  295. FW does not get junk values in the command.
  296. v. Do away with the redundant LSI_CONFIG_COMPAT redefinition for
  297. CONFIG_COMPAT. Replace <asm/ioctl32.h> with <linux/ioctl32.h>
  298. - James Bottomley <James.Bottomley@SteelEye.com>, 08.17.2004
  299. linux-scsi mailing list
  300. vi. Add support for 64-bit applications. Current drivers assume only
  301. 32-bit applications, even on 64-bit platforms. Use the "data" and
  302. "buffer" fields of the mimd_t structure, instead of embedded 32-bit
  303. addresses in application mailbox and passthru structures.
  304. vii. Move the function declarations for the management module from
  305. megaraid_mm.h to megaraid_mm.c
  306. - Andrew Morton <akpm@osdl.org>, 08.19.2004
  307. linux-scsi mailing list
  308. viii. Change default values for MEGARAID_NEWGEN, MEGARAID_MM, and
  309. MEGARAID_MAILBOX to 'n' in Kconfig.megaraid
  310. - Andrew Morton <akpm@osdl.org>, 08.19.2004
  311. linux-scsi mailing list
  312. ix. replace udelay with msleep
  313. x. Typos corrected in comments and whitespace adjustments, explicit
  314. grouping of expressions.
  315. Release Date : Fri Jul 23 15:22:07 EDT 2004 - Atul Mukker <atulm@lsil.com>
  316. Current Version : 2.20.2.0 (scsi module), 2.20.1.0 (cmm module)
  317. Older Version : 2.20.1.0 (scsi module), 2.20.0.0 (cmm module)
  318. i. Add PCI ids for Acer ROMB 2E solution
  319. ii. Add PCI ids for I4
  320. iii. Typo corrected for subsys id for megaraid sata 300-4x
  321. iv. Remove yield() while mailbox handshake in synchronous commands
  322. "My other main gripe is things like this:
  323. + // wait for maximum 1 second for status to post
  324. + for (i = 0; i < 40000; i++) {
  325. + if (mbox->numstatus != 0xFF) break;
  326. + udelay(25); yield();
  327. + }
  328. which litter the driver. Use of yield() in drivers is deprecated."
  329. - James Bottomley <James.Bottomley@SteelEye.com>, 07.14.2004
  330. linux-scsi mailing list
  331. v. Remove redundant __megaraid_busywait_mbox routine
  332. vi. Fix bug in the managment module, which causes a system lockup when the
  333. IO module is loaded and then unloaded, followed by executing any
  334. management utility. The current version of management module does not
  335. handle the adapter unregister properly.
  336. Specifically, it still keeps a reference to the unregistered
  337. controllers. To avoid this, the static array adapters has been
  338. replaced by a dynamic list, which gets updated every time an adapter
  339. is added or removed.
  340. Also, during unregistration of the IO module, the resources are
  341. now released in the exact reverse order of the allocation time
  342. sequence.
  343. Release Date : Fri Jun 25 18:58:43 EDT 2004 - Atul Mukker <atulm@lsil.com>
  344. Current Version : 2.20.1.0
  345. Older Version : megaraid 2.20.0.1
  346. i. Stale list pointer in adapter causes kernel panic when module
  347. megaraid_mbox is unloaded
  348. Release Date : Thu Jun 24 20:37:11 EDT 2004 - Atul Mukker <atulm@lsil.com>
  349. Current Version : 2.20.0.1
  350. Older Version : megaraid 2.20.0.00
  351. i. Modules are not 'y' by default, but depend on current definition of
  352. SCSI & PCI.
  353. ii. Redundant structure mraid_driver_t removed.
  354. iii. Miscellaneous indentation and goto/label fixes.
  355. - Christoph Hellwig <hch@infradead.org>, 06.24.2004 linux-scsi
  356. iv. scsi_host_put(), do just before completing HBA shutdown.
  357. Release Date : Mon Jun 21 19:53:54 EDT 2004 - Atul Mukker <atulm@lsil.com>
  358. Current Version : 2.20.0.0
  359. Older Version : megaraid 2.20.0.rc2 and 2.00.3
  360. i. Independent module to interact with userland applications and
  361. multiplex command to low level RAID module(s).
  362. "Shared code in a third module, a "library module", is an acceptable
  363. solution. modprobe automatically loads dependent modules, so users
  364. running "modprobe driver1" or "modprobe driver2" would automatically
  365. load the shared library module."
  366. - Jeff Garzik <jgarzik@pobox.com> 02.25.2004 LKML
  367. "As Jeff hinted, if your userspace<->driver API is consistent between
  368. your new MPT-based RAID controllers and your existing megaraid driver,
  369. then perhaps you need a single small helper module (lsiioctl or some
  370. better name), loaded by both mptraid and megaraid automatically, which
  371. handles registering the /dev/megaraid node dynamically. In this case,
  372. both mptraid and megaraid would register with lsiioctl for each
  373. adapter discovered, and lsiioctl would essentially be a switch,
  374. redirecting userspace tool ioctls to the appropriate driver."
  375. - Matt Domsch <Matt_Domsch@dell.com> 02.25.2004 LKML
  376. ii. Remove C99 initializations from pci_device id.
  377. "pci_id_table_g would be much more readable when not using C99
  378. initializers.
  379. PCI table doesn't change, there's lots of users that prefer the more
  380. readable variant. And it's really far less and much easier to grok
  381. lines without C99 initializers."
  382. - Christoph Hellwig <hch@infradead.org>, 05.28.2004 linux-scsi
  383. iii. Many fixes as suggested by Christoph Hellwig <hch@infradead.org> on
  384. linux-scsi, 05.28.2004
  385. iv. We now support up to 32 parallel ioctl commands instead of current 1.
  386. There is a conscious effort to let memory allocation not fail for ioctl
  387. commands.
  388. v. Do away with internal memory management. Use pci_pool_(create|alloc)
  389. instead.
  390. vi. Kill tasklet when unloading the driver.
  391. vii. Do not use "host_lock', driver has fine-grain locks now to protect all
  392. data structures.
  393. viii. Optimize the build scatter-gather list routine. The callers already
  394. know the data transfer address and length.
  395. ix. Better implementation of error handling and recovery. Driver now
  396. performs extended errors recovery for instances like scsi cable pull.
  397. x. Disassociate the management commands with an overlaid scsi command.
  398. Driver now treats the management packets as special packets and has a
  399. dedicated callback routine.