mbox series

[0/4] fdomain: Resurrect driver (modular version)

Message ID 20190428200626.28092-1-linux@zary.sk (mailing list archive)
Headers show
Series fdomain: Resurrect driver (modular version) | expand

Message

Ondrej Zary April 28, 2019, 8:06 p.m. UTC
Resurrect previously removed fdomain driver, in modern style.
Initialization is rewritten completely, with support for multiple cards,
no more global state variables.
Most of the code from interrupt handler is moved to a workqueue.

This is a modularized version with core separated from bus-specific drivers
(PCI, ISA and PCMCIA). Only PCI driver is tested for now. The other two could
be dropped until they get tested.

Changes since RFC:
 - multi-line comment style, some coding style
 - usage of scsi_k(un)map_atomic_sg for buffer access
 - static marking of fdomain_host_reset and fdomain_template
 - IRQ lookup moved to ISA bus driver
 - EXPORT_SYMBOL_GPL

Comments

Martin K. Petersen April 29, 2019, 9:35 p.m. UTC | #1
Ondrej,

> Resurrect previously removed fdomain driver, in modern style.
> Initialization is rewritten completely, with support for multiple
> cards, no more global state variables.  Most of the code from
> interrupt handler is moved to a workqueue.
>
> This is a modularized version with core separated from bus-specific
> drivers (PCI, ISA and PCMCIA). Only PCI driver is tested for now.

I applied patches #1(v2) and #2 to 5.2/scsi-queue with a few tweaks.

Thanks for your work on this!