2020-10-29 12:30:41

by Mihai Carabas

[permalink] [raw]
Subject: [PATCH] add support for pci in the pvpanic driver

This patchset adds support for pci in the pvpanic driver. They were assembled
from an old RFC from 2019 [1] which was left unmerged.

In order to test this, you need also to apply the patches I have sent for pci
pvpanic support in qemu [2].

[1] https://lwn.net/ml/linux-kernel/[email protected]/
[2] https://lists.nongnu.org/archive/html/qemu-devel/2020-10/msg08709.html

Peng Hao (4):
misc/pvpanic : preparing for pvpanic driver framework
misc/pvpanic: Add pvpanic driver framework
misc/pvpanic: Avoid initializing multiple pvpanic devices
misc/pvpanic: add new pvpanic pci driver

drivers/misc/Kconfig | 1 +
drivers/misc/Makefile | 2 +-
drivers/misc/pvpanic.c | 196 ------------------------------------
drivers/misc/pvpanic/Kconfig | 34 +++++++
drivers/misc/pvpanic/Makefile | 8 ++
drivers/misc/pvpanic/pvpanic-acpi.c | 77 ++++++++++++++
drivers/misc/pvpanic/pvpanic-of.c | 53 ++++++++++
drivers/misc/pvpanic/pvpanic-pci.c | 56 +++++++++++
drivers/misc/pvpanic/pvpanic.c | 150 +++++++++++++++++++++++++++
drivers/misc/pvpanic/pvpanic.h | 15 +++
10 files changed, 395 insertions(+), 197 deletions(-)
delete mode 100644 drivers/misc/pvpanic.c
create mode 100644 drivers/misc/pvpanic/Kconfig
create mode 100644 drivers/misc/pvpanic/Makefile
create mode 100644 drivers/misc/pvpanic/pvpanic-acpi.c
create mode 100644 drivers/misc/pvpanic/pvpanic-of.c
create mode 100644 drivers/misc/pvpanic/pvpanic-pci.c
create mode 100644 drivers/misc/pvpanic/pvpanic.c
create mode 100644 drivers/misc/pvpanic/pvpanic.h

--
1.8.3.1


2020-11-23 15:11:31

by Mihai Carabas

[permalink] [raw]
Subject: Re [PATCH] add support for pci in the pvpanic driver

@Andy:

>Hmm... It was a bit of a long time...
>Have you seen [1]?

>[1]:
>https://lore.kernel.org/lkml/20201027175806.20305-1->[email protected]/

I have seen that patchset after I sent mine. Do you want me to rebase and redo
the the pvpanic patchset of adding PCI support on top of yours? Or were you
refering at the fact that I added your Rb?


Any other feedback on this patchset?

Thank you,
Mihai Carabas