24 May, 2009

1 commit


27 Apr, 2009

3 commits

  • Diagnostic buffer support is already there in the driver. This support allows
    applications to pull ring buffers from controller firmware for debugging
    firmware related issues.

    What this patch does is sends reqeust to firmware to release the buffers prior
    to host reset. This will allow what ever debug info is there prior to reset
    to be dma'd to host memory. With out this fix, some of the debug data would
    been lost.

    Signed-off-by: Eric Moore
    Signed-off-by: James Bottomley

    Eric Moore
     
  • The driver name needs to be at the beginining of the driver_version string in
    MPT2IOCINFO ioctl. This is the same behaviour is there already in the mptsas
    driver.

    Signed-off-by: Eric Moore
    Signed-off-by: James Bottomley

    Eric Moore
     
  • The driver is not freeing message frame when returning failure from
    _ctl_do_task_abort. If you call this function 500 times when its unable
    to find an active task mid, you end up with no message frames.

    Signed-off-by: Eric Moore
    Signed-off-by: James Bottomley

    Eric Moore
     

18 Mar, 2009

1 commit

  • The ioc_list global symbol is already used in 1st generation mpt
    fusion drivers, so this patch makes it unique in the 2nd generation
    driver. I've checked the entire sources, and I don't see any other
    global system missing the mpt2sas_xxx prefix.

    Signed-off-by: Eric Moore
    Signed-off-by: James Bottomley

    Eric Moore
     

14 Mar, 2009

1 commit

  • * This is new scsi lld device driver from LSI supporting the SAS 2.0
    standard. I have split patchs by filename.

    * Here is list of new 6gb host controllers:

    LSI SAS2004
    LSI SAS2008
    LSI SAS2108
    LSI SAS2116

    * Here are the changes in the 4th posting of this patch set:

    (1) fix compile errors when SCSI_MPT2SAS_LOGGING is not enabled
    (2) add mpt2sas to the SCSI Mid Layer Makefile
    (3) append mpt2sas_ to the naming of all non-static functions
    (4) fix oops for SMP_PASSTHRU
    (5) doorbell algorithm imported changes from windows driver

    * Here are the changes in the 3rd posting of this patch set:

    (1) add readl following writel from the function that disables interrupts
    (2) replace 0xFFFFFFFFFFFFFFFFULL with ~0ULL
    (3) when calling pci_enable_msix, only pass one msix entry (instead of 15).
    (4) remove the "current HW implementation uses..... " comment in the sources
    (5) merged bug fix for SIGIO/POLLIN notifcation; reported by the storlib team.

    * Here are the changes in the 2nd posting of this patch set:

    (1) use little endian types in the mpi headers
    (2) merged in bug fix's from inhouse drivers.

    Signed-off-by: Eric Moore
    Tested-by: peter Bogdanovic
    Signed-off-by: James Bottomley

    Eric Moore