Re: [dpdk-dev] [PATCH v7 0/3] fix PF reset causes VF memory request failure

2021-06-08 Thread David Marchand
On Mon, May 24, 2021 at 3:44 AM Haiyue Wang wrote: > > Trigger the VF reset from PF reset, > > echo 1 > /sys/bus/pci/devices/PF-BDF/reset > > the PCI bus master bit will cleared on VF, so the VF needs to enable > this bit before restart. > > This patch set adds the API to enable PCI bus ma

[dpdk-dev] [PATCH v7 0/3] fix PF reset causes VF memory request failure

2021-05-23 Thread Haiyue Wang
Trigger the VF reset from PF reset, echo 1 > /sys/bus/pci/devices/PF-BDF/reset the PCI bus master bit will cleared on VF, so the VF needs to enable this bit before restart. This patch set adds the API to enable PCI bus master. v7: fix the commit message typo, and update some description