RE: [PATCH] virtio-iommu: Fix the partial copy of probe request

2022-06-16 Thread Duan, Zhenzhong
>-Original Message- >From: Michael S. Tsirkin >Sent: Friday, June 17, 2022 1:31 PM >To: Duan, Zhenzhong >Cc: qemu-devel@nongnu.org; eric.au...@redhat.com >Subject: Re: [PATCH] virtio-iommu: Fix the partial copy of probe request > >On Fri, Jun 17, 2022 at 11:

Re: [PATCH] virtio-iommu: Fix the partial copy of probe request

2022-06-16 Thread Michael S. Tsirkin
On Fri, Jun 17, 2022 at 11:43:48AM +0800, Zhenzhong Duan wrote: > The structure of probe request doesn't include the tail, this lead to > a few field is missed to be copied. Currently this isn't an issue as > those missed field belong to reserved field, just in case reserved > field will be used in

[PATCH] virtio-iommu: Fix the partial copy of probe request

2022-06-16 Thread Zhenzhong Duan
The structure of probe request doesn't include the tail, this lead to a few field is missed to be copied. Currently this isn't an issue as those missed field belong to reserved field, just in case reserved field will be used in the future. By this chance, also remove a few useless code. Signed-of