[PATCH 1/3] myrb: Add Mylex RAID controller (block interface)

2018-10-17 Thread Hannes Reinecke
This patch adds support for the Mylex DAC960 RAID controller, supporting the older, block-based interface only. The driver is a re-implementation of the original DAC960 driver. Signed-off-by: Hannes Reinecke Reviewed-by: Christoph Hellwig --- MAINTAINERS |6 + drivers/scsi/Kconfig

Re: [PATCH 1/3] myrb: Add Mylex RAID controller (block interface)

2018-10-17 Thread Christoph Hellwig
> diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h > index 99d366cb0e9f..1efbd175411a 100644 > --- a/include/linux/pci_ids.h > +++ b/include/linux/pci_ids.h > @@ -922,10 +922,12 @@ > #define PCI_DEVICE_ID_PICOPOWER_PT86C523BBP 0x8002 > > #define PCI_VENDOR_ID_MYLEX 0x106

[PATCH 1/3] myrb: Add Mylex RAID controller (block interface)

2018-10-12 Thread Hannes Reinecke
This patch adds support for the Mylex DAC960 RAID controller, supporting the older, block-based interface only. The driver is a re-implementation of the original DAC960 driver. Signed-off-by: Hannes Reinecke --- MAINTAINERS |6 + drivers/scsi/Kconfig| 15 + drivers/scsi/Mak

Re: [PATCH 1/3] myrb: Add Mylex RAID controller (block interface)

2018-10-10 Thread Christoph Hellwig
> +static void myrb_monitor(struct work_struct *work); > +static inline void DAC960_P_To_PD_TranslateDeviceState(void *DeviceState); Can you please use normal kernel function names and a normal prefix? Also there seems to be no good reason to need a forward declaration for this function. > +stat

[PATCH 1/3] myrb: Add Mylex RAID controller (block interface)

2018-10-09 Thread Hannes Reinecke
This patch adds support for the Mylex DAC960 RAID controller, supporting the older, block-based interface only. The driver is a re-implementation of the original DAC960 driver. Signed-off-by: Hannes Reinecke --- drivers/scsi/Kconfig| 15 + drivers/scsi/Makefile |1 + drivers/scsi/myr