Re: [edk2-devel] [PATCH v2 09/13] OvmfPkg/MptScsiDxe: Open PciIo protocol for later use

2020-02-28 Thread Laszlo Ersek
On 02/28/20 10:50, Laszlo Ersek wrote: > In particular, in patch "OvmfPkg/MptScsiDxe: Install stubbed > EXT_SCSI_PASS_THRU", the pattern should be laid out like this: > > --- > Status = gBS->InstallProtocolInterface (...); > if (EFI_ERROR (Status)) { > goto FreeDev; > } >

Re: [edk2-devel] [PATCH v2 09/13] OvmfPkg/MptScsiDxe: Open PciIo protocol for later use

2020-02-28 Thread Laszlo Ersek
On 02/26/20 17:41, Nikita Leshenko wrote: > This will give us an exclusive access to the PciIo of this device > after it was started and until is will be stopped. (1) s/is/it/ > > Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2390 > Contributed-under: TianoCore Contribution Agreement 1.1

[edk2-devel] [PATCH v2 09/13] OvmfPkg/MptScsiDxe: Open PciIo protocol for later use

2020-02-26 Thread Nikita Leshenko
This will give us an exclusive access to the PciIo of this device after it was started and until is will be stopped. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2390 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Nikita Leshenko Reviewed-by: Konrad Rzeszutek Wilk