[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 01/15] scripts/update-linux-headers: Add iommufd.h
|
From: |
Eric Auger |
|
Subject: |
Re: [PATCH v3 01/15] scripts/update-linux-headers: Add iommufd.h |
|
Date: |
Tue, 3 Oct 2023 16:09:46 +0200 |
|
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 |
Hi Cédric,
On 10/3/23 15:50, Cédric Le Goater wrote:
> On 10/3/23 12:13, Eric Auger wrote:
>> Update the script to import iommufd.h
>>
>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>> Signed-off-by: Yi Liu <yi.l.liu@intel.com>
>> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
>
>
> Reviewed-by: Cédric Le Goater <clg@redhat.com>
Sorry I forgot to grab it :-(
Eric
>
> Thanks,
>
> C.
>
>
>> ---
>> scripts/update-linux-headers.sh | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/scripts/update-linux-headers.sh
>> b/scripts/update-linux-headers.sh
>> index 35a64bb501..34295c0fe5 100755
>> --- a/scripts/update-linux-headers.sh
>> +++ b/scripts/update-linux-headers.sh
>> @@ -161,7 +161,8 @@ done
>> rm -rf "$output/linux-headers/linux"
>> mkdir -p "$output/linux-headers/linux"
>> for header in const.h stddef.h kvm.h vfio.h vfio_ccw.h vfio_zdev.h
>> vhost.h \
>> - psci.h psp-sev.h userfaultfd.h memfd.h mman.h
>> nvme_ioctl.h vduse.h; do
>> + psci.h psp-sev.h userfaultfd.h memfd.h mman.h
>> nvme_ioctl.h \
>> + vduse.h iommufd.h; do
>> cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux"
>> done
>>
>
- [PATCH v3 00/15] Prerequisite changes for IOMMUFD support, Eric Auger, 2023/10/03
- [PATCH v3 01/15] scripts/update-linux-headers: Add iommufd.h, Eric Auger, 2023/10/03
- [PATCH v3 03/15] vfio/common: Move IOMMU agnostic helpers to a separate file, Eric Auger, 2023/10/03
- [PATCH v3 04/15] vfio/common: Propagate KVM_SET_DEVICE_ATTR error if any, Eric Auger, 2023/10/03
- [PATCH v3 06/15] vfio/common: Extract out vfio_kvm_device_[add/del]_fd, Eric Auger, 2023/10/03
- [PATCH v3 05/15] vfio/common: Introduce vfio_container_add|del_section_window(), Eric Auger, 2023/10/03
- [PATCH v3 07/15] vfio/pci: Introduce vfio_[attach/detach]_device, Eric Auger, 2023/10/03
- [PATCH v3 08/15] vfio/platform: Use vfio_[attach/detach]_device, Eric Auger, 2023/10/03