lpfc.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. LPFC Driver Release Notes:
  2. =============================================================================
  3. IMPORTANT:
  4. Starting in the 8.0.17 release, the driver began to be targeted strictly
  5. toward the upstream kernel. As such, we removed #ifdefs for older kernels
  6. (pre 2.6.10). The 8.0.16 release should be used if the driver is to be
  7. run on one of the older kernels.
  8. The proposed modifications to the transport layer for FC remote ports
  9. and extended attribute support is now part of the upstream kernel
  10. as of 2.6.12. We no longer need to provide patches for this support,
  11. nor a *full* version which has old an new kernel support.
  12. The driver now requires a 2.6.12 (if pre-release, 2.6.12-rc1) or later
  13. kernel.
  14. Please heed these dependencies....
  15. ********************************************************************
  16. The following information is provided for additional background on the
  17. history of the driver as we push for upstream acceptance.
  18. Cable pull and temporary device Loss:
  19. In older revisions of the lpfc driver, the driver internally queued i/o
  20. received from the midlayer. In the cases where a cable was pulled, link
  21. jitter, or a device temporarily loses connectivity (due to its cable
  22. being removed, a switch rebooting, or a device reboot), the driver could
  23. hide the disappearance of the device from the midlayer. I/O's issued to
  24. the LLDD would simply be queued for a short duration, allowing the device
  25. to reappear or link come back alive, with no inadvertent side effects
  26. to the system. If the driver did not hide these conditions, i/o would be
  27. errored by the driver, the mid-layer would exhaust its retries, and the
  28. device would be taken offline. Manual intervention would be required to
  29. re-enable the device.
  30. The community supporting kernel.org has driven an effort to remove
  31. internal queuing from all LLDDs. The philosophy is that internal
  32. queuing is unnecessary as the block layer already performs the
  33. queuing. Removing the queues from the LLDD makes a more predictable
  34. and more simple LLDD.
  35. As a potential new addition to kernel.org, the 8.x driver was asked to
  36. have all internal queuing removed. Emulex complied with this request.
  37. In explaining the impacts of this change, Emulex has worked with the
  38. community in modifying the behavior of the SCSI midlayer so that SCSI
  39. devices can be temporarily suspended while transport events (such as
  40. those described) can occur.
  41. The proposed patch was posted to the linux-scsi mailing list. The patch
  42. is contained in the 2.6.10-rc2 (and later) patch kits. As such, this
  43. patch is part of the standard 2.6.10 kernel.
  44. By default, the driver expects the patches for block/unblock interfaces
  45. to be present in the kernel. No #define needs to be set to enable support.
  46. Kernel Support
  47. This source package is targeted for the upstream kernel only. (See notes
  48. at the top of this file). It relies on interfaces that are slowing
  49. migrating into the kernel.org kernel.
  50. At this time, the driver requires the 2.6.12 (if pre-release, 2.6.12-rc1)
  51. kernel.
  52. If a driver is needed for older kernels please utilize the 8.0.16
  53. driver sources.
  54. Patches
  55. Thankfully, at this time, patches are not needed.