From: Nicolin Chen <nicolinc@nvidia.com>
To: "Tian, Kevin" <kevin.tian@intel.com>
Cc: "Liu, Yi L" <yi.l.liu@intel.com>,
"joro@8bytes.org" <joro@8bytes.org>,
"alex.williamson@redhat.com" <alex.williamson@redhat.com>,
"jgg@nvidia.com" <jgg@nvidia.com>,
"robin.murphy@arm.com" <robin.murphy@arm.com>,
"baolu.lu@linux.intel.com" <baolu.lu@linux.intel.com>,
"cohuck@redhat.com" <cohuck@redhat.com>,
"eric.auger@redhat.com" <eric.auger@redhat.com>,
"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
"mjrosato@linux.ibm.com" <mjrosato@linux.ibm.com>,
"chao.p.peng@linux.intel.com" <chao.p.peng@linux.intel.com>,
"yi.y.sun@linux.intel.com" <yi.y.sun@linux.intel.com>,
"peterx@redhat.com" <peterx@redhat.com>,
"jasowang@redhat.com" <jasowang@redhat.com>,
"shameerali.kolothum.thodi@huawei.com"
<shameerali.kolothum.thodi@huawei.com>,
"lulu@redhat.com" <lulu@redhat.com>,
"suravee.suthikulpanit@amd.com" <suravee.suthikulpanit@amd.com>,
"iommu@lists.linux.dev" <iommu@lists.linux.dev>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-kselftest@vger.kernel.org"
<linux-kselftest@vger.kernel.org>,
"Duan, Zhenzhong" <zhenzhong.duan@intel.com>
Subject: Re: [PATCH v4 4/4] iommufd/selftest: Add coverage for IOMMU_GET_HW_INFO ioctl
Date: Thu, 27 Jul 2023 01:38:19 -0700 [thread overview]
Message-ID: <ZMIs+6w4vF3X27L7@Asurada-Nvidia> (raw)
In-Reply-To: <BN9PR11MB5276E70BEC76AB3D96CCF5028C01A@BN9PR11MB5276.namprd11.prod.outlook.com>
Hi Kevin,
On Thu, Jul 27, 2023 at 08:14:45AM +0000, Tian, Kevin wrote:
> > From: Liu, Yi L <yi.l.liu@intel.com>
> > Sent: Monday, July 24, 2023 7:00 PM
> >
> > --- a/drivers/iommu/iommufd/device.c
> > +++ b/drivers/iommu/iommufd/device.c
> > @@ -8,6 +8,7 @@
> >
> > #include "io_pagetable.h"
> > #include "iommufd_private.h"
> > +#include "iommufd_test.h"
>
> Is it stale?
Ah, should've dropped it.
> > @@ -211,7 +213,7 @@ FIXTURE_SETUP(iommufd_ioas)
> >
> > for (i = 0; i != variant->mock_domains; i++) {
> > test_cmd_mock_domain(self->ioas_id, &self->stdev_id,
> > - &self->hwpt_id, NULL);
> > + &self->hwpt_id, &self->device_id);
> > self->base_iova = MOCK_APERTURE_START;
> > }
> > }
> > @@ -290,6 +292,19 @@ TEST_F(iommufd_ioas, ioas_area_auto_destroy)
> > }
> > }
> >
> > +TEST_F(iommufd_ioas, get_hw_info)
> > +{
> > + struct iommu_test_hw_info info;
> > +
> > + if (self->device_id) {
> > + test_cmd_get_hw_info(self->device_id, sizeof(info), &info);
> > + assert(info.test_reg ==
> > IOMMU_HW_INFO_SELFTEST_REGVAL);
> > + } else {
> > + test_err_get_hw_info(ENOENT, self->device_id,
> > + sizeof(info), &info);
> > + }
>
> If self->device_id is invalid it should be reported right after
> test_cmd_mock_domain()?
A device_id is created per mock_domain. And mock_domain is a
variant that could be 0, so a device_id being 0 could be a
normal case. Here the invalid test is for negative coverage.
Thanks!
Nic
next prev parent reply other threads:[~2023-07-27 8:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-24 10:59 [PATCH v4 0/4] iommufd: Add iommu hardware info reporting Yi Liu
2023-07-24 10:59 ` [PATCH v4 1/4] iommu: Move dev_iommu_ops() to private header Yi Liu
2023-07-24 17:43 ` Jason Gunthorpe
2023-07-24 10:59 ` [PATCH v4 2/4] iommu: Add new iommu op to get iommu hardware information Yi Liu
2023-07-27 7:57 ` Tian, Kevin
2023-07-27 14:43 ` Jason Gunthorpe
2023-07-28 2:05 ` Tian, Kevin
2023-07-31 8:33 ` Liu, Yi L
2023-07-31 13:45 ` Jason Gunthorpe
2023-08-01 3:58 ` Liu, Yi L
2023-07-24 10:59 ` [PATCH v4 3/4] iommufd: Add IOMMU_GET_HW_INFO Yi Liu
2023-07-24 17:50 ` Jason Gunthorpe
2023-07-31 8:35 ` Liu, Yi L
2023-07-24 10:59 ` [PATCH v4 4/4] iommufd/selftest: Add coverage for IOMMU_GET_HW_INFO ioctl Yi Liu
2023-07-24 17:52 ` Jason Gunthorpe
2023-07-27 8:35 ` Nicolin Chen
2023-07-27 8:14 ` Tian, Kevin
2023-07-27 8:38 ` Nicolin Chen [this message]
2023-07-27 9:14 ` Tian, Kevin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZMIs+6w4vF3X27L7@Asurada-Nvidia \
--to=nicolinc@nvidia.com \
--cc=alex.williamson@redhat.com \
--cc=baolu.lu@linux.intel.com \
--cc=chao.p.peng@linux.intel.com \
--cc=cohuck@redhat.com \
--cc=eric.auger@redhat.com \
--cc=iommu@lists.linux.dev \
--cc=jasowang@redhat.com \
--cc=jgg@nvidia.com \
--cc=joro@8bytes.org \
--cc=kevin.tian@intel.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=lulu@redhat.com \
--cc=mjrosato@linux.ibm.com \
--cc=peterx@redhat.com \
--cc=robin.murphy@arm.com \
--cc=shameerali.kolothum.thodi@huawei.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=yi.l.liu@intel.com \
--cc=yi.y.sun@linux.intel.com \
--cc=zhenzhong.duan@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox