[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <BN9PR11MB527613651F0A023EED967BA18C1AA@BN9PR11MB5276.namprd11.prod.outlook.com>
Date: Thu, 17 Aug 2023 07:32:52 +0000
From: "Tian, Kevin" <kevin.tian@...el.com>
To: "Liu, Yi L" <yi.l.liu@...el.com>,
"joro@...tes.org" <joro@...tes.org>,
"alex.williamson@...hat.com" <alex.williamson@...hat.com>,
"jgg@...dia.com" <jgg@...dia.com>,
"robin.murphy@....com" <robin.murphy@....com>,
"baolu.lu@...ux.intel.com" <baolu.lu@...ux.intel.com>
CC: "cohuck@...hat.com" <cohuck@...hat.com>,
"eric.auger@...hat.com" <eric.auger@...hat.com>,
"nicolinc@...dia.com" <nicolinc@...dia.com>,
"kvm@...r.kernel.org" <kvm@...r.kernel.org>,
"mjrosato@...ux.ibm.com" <mjrosato@...ux.ibm.com>,
"chao.p.peng@...ux.intel.com" <chao.p.peng@...ux.intel.com>,
"yi.y.sun@...ux.intel.com" <yi.y.sun@...ux.intel.com>,
"peterx@...hat.com" <peterx@...hat.com>,
"jasowang@...hat.com" <jasowang@...hat.com>,
"shameerali.kolothum.thodi@...wei.com"
<shameerali.kolothum.thodi@...wei.com>,
"lulu@...hat.com" <lulu@...hat.com>,
"suravee.suthikulpanit@....com" <suravee.suthikulpanit@....com>,
"iommu@...ts.linux.dev" <iommu@...ts.linux.dev>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-kselftest@...r.kernel.org" <linux-kselftest@...r.kernel.org>,
"Duan, Zhenzhong" <zhenzhong.duan@...el.com>
Subject: RE: [PATCH v8 4/5] iommufd/selftest: Add coverage for
IOMMU_GET_HW_INFO ioctl
> From: Liu, Yi L <yi.l.liu@...el.com>
> Sent: Wednesday, August 16, 2023 8:14 PM
>
>
> +TEST_F(iommufd_ioas, get_hw_info)
> +{
> + struct iommu_test_hw_info buffer_exact;
> + struct iommu_test_hw_info_buffer {
> + struct iommu_test_hw_info info;
> + uint64_t trailing_bytes;
> + } buffer_larger;
> +
> + if (self->device_id) {
> + /* Provide a zero-size user_buffer */
> + test_cmd_get_hw_info(self->device_id, NULL, 0);
> + /* Provide a user_buffer with exact size */
> + test_cmd_get_hw_info(self->device_id, &buffer_exact,
> sizeof(buffer_exact));
> + /*
> + * Provide a user_buffer with size larger than the exact size to
> check if
> + * kernel zero the trailing bytes.
> + */
> + test_cmd_get_hw_info(self->device_id, &buffer_larger,
> sizeof(buffer_larger));
Do we also want to test a case where size is smaller than the exact size?
Powered by blists - more mailing lists