All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Tian, Kevin" <kevin.tian@intel.com>
To: Steve Wahl <steve.wahl@hpe.com>, Baolu Lu <baolu.lu@linux.intel.com>
Cc: Dimitri Sivanich <sivanich@hpe.com>,
	"Rodel, Jorg" <jroedel@suse.de>,
	"Anderson, Russ" <russ.anderson@hpe.com>,
	Mike Travis <mike.travis@hpe.com>, Will Deacon <will@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"iommu@lists.linux-foundation.org"
	<iommu@lists.linux-foundation.org>,
	David Woodhouse <dwmw2@infradead.org>
Subject: RE: [PATCH v2] iommu/vt-d: Make DMAR_UNITS_SUPPORTED a config setting
Date: Mon, 23 May 2022 06:43:28 +0000	[thread overview]
Message-ID: <BN9PR11MB5276747991B624B62B8CD1248CD49@BN9PR11MB5276.namprd11.prod.outlook.com> (raw)
In-Reply-To: <YoVP3w5cJWriLBlu@swahl-home.5wahls.com>

> From: Steve Wahl
> Sent: Thursday, May 19, 2022 3:58 AM
> 
> On Fri, May 13, 2022 at 10:09:46AM +0800, Baolu Lu wrote:
> > On 2022/5/13 07:12, Steve Wahl wrote:
> > > On Thu, May 12, 2022 at 10:13:09AM -0500, Steve Wahl wrote:
> > > > To support up to 64 sockets with 10 DMAR units each (640), make the
> > > > value of DMAR_UNITS_SUPPORTED adjustable by a config variable,
> > > > CONFIG_DMAR_UNITS_SUPPORTED, and make it's default 1024 when
> MAXSMP is
> > > > set.
> > > >
> > > > If the available hardware exceeds DMAR_UNITS_SUPPORTED
> (previously set
> > > > to MAX_IO_APICS, or 128), it causes these messages: "DMAR: Failed to
> > > > allocate seq_id", "DMAR: Parse DMAR table failure.", and "x2apic: IRQ
> > > > remapping doesn't support X2APIC mode x2apic disabled"; and the
> system
> > > > fails to boot properly.
> > > >
> > > > Signed-off-by: Steve Wahl <steve.wahl@hpe.com>
> > >
> > > I've received a report from the kernel test robot <lkp@intel.com>,
> > > that this patch causes an error (shown below) when
> > > CONFIG_IOMMU_SUPPORT is not set.
> > >
> > > In my opinion, this is because include/linux/dmar.h and
> > > include/linux/intel-iommu are being #included when they are not really
> > > being used.
> > >
> > > I've tried placing the contents of intel-iommu.h within an #ifdef
> > > CONFIG_INTEL_IOMMU, and that fixes the problem.
> > >
> > > Two questions:
> > >
> > > A) Is this the desired approach to to the fix?
> >
> > Most part of include/linux/intel-iommu.h is private to Intel IOMMU
> > driver. They should be put in a header like drivers/iommu/intel
> > /iommu.h. Eventually, we should remove include/linux/intel-iommu.h
> > and device drivers interact with iommu subsystem through the IOMMU
> > kAPIs.
> >
> > Best regards,
> > baolu
> 
> Baolu's recent patch to move intel-iommu.h private still allows my
> [PATCH v2] to apply with no changes, and gets rid of the compile
> errors when CONFIG_IOMMU_SUPPORT is not set, so the kernel test robot
> should be happy now.
> 
> Is there another step I should do to bring this patch back into focus?
> 

This looks good to me.

Reviewed-by: Kevin Tian <kevin.tian@intel.com>
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

WARNING: multiple messages have this Message-ID (diff)
From: "Tian, Kevin" <kevin.tian@intel.com>
To: Steve Wahl <steve.wahl@hpe.com>, Baolu Lu <baolu.lu@linux.intel.com>
Cc: Dimitri Sivanich <sivanich@hpe.com>,
	"Rodel, Jorg" <jroedel@suse.de>,
	"Anderson, Russ" <russ.anderson@hpe.com>,
	Mike Travis <mike.travis@hpe.com>,
	David Woodhouse <dwmw2@infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"iommu@lists.linux-foundation.org"
	<iommu@lists.linux-foundation.org>, Will Deacon <will@kernel.org>
Subject: RE: [PATCH v2] iommu/vt-d: Make DMAR_UNITS_SUPPORTED a config setting
Date: Mon, 23 May 2022 06:43:28 +0000	[thread overview]
Message-ID: <BN9PR11MB5276747991B624B62B8CD1248CD49@BN9PR11MB5276.namprd11.prod.outlook.com> (raw)
In-Reply-To: <YoVP3w5cJWriLBlu@swahl-home.5wahls.com>

> From: Steve Wahl
> Sent: Thursday, May 19, 2022 3:58 AM
> 
> On Fri, May 13, 2022 at 10:09:46AM +0800, Baolu Lu wrote:
> > On 2022/5/13 07:12, Steve Wahl wrote:
> > > On Thu, May 12, 2022 at 10:13:09AM -0500, Steve Wahl wrote:
> > > > To support up to 64 sockets with 10 DMAR units each (640), make the
> > > > value of DMAR_UNITS_SUPPORTED adjustable by a config variable,
> > > > CONFIG_DMAR_UNITS_SUPPORTED, and make it's default 1024 when
> MAXSMP is
> > > > set.
> > > >
> > > > If the available hardware exceeds DMAR_UNITS_SUPPORTED
> (previously set
> > > > to MAX_IO_APICS, or 128), it causes these messages: "DMAR: Failed to
> > > > allocate seq_id", "DMAR: Parse DMAR table failure.", and "x2apic: IRQ
> > > > remapping doesn't support X2APIC mode x2apic disabled"; and the
> system
> > > > fails to boot properly.
> > > >
> > > > Signed-off-by: Steve Wahl <steve.wahl@hpe.com>
> > >
> > > I've received a report from the kernel test robot <lkp@intel.com>,
> > > that this patch causes an error (shown below) when
> > > CONFIG_IOMMU_SUPPORT is not set.
> > >
> > > In my opinion, this is because include/linux/dmar.h and
> > > include/linux/intel-iommu are being #included when they are not really
> > > being used.
> > >
> > > I've tried placing the contents of intel-iommu.h within an #ifdef
> > > CONFIG_INTEL_IOMMU, and that fixes the problem.
> > >
> > > Two questions:
> > >
> > > A) Is this the desired approach to to the fix?
> >
> > Most part of include/linux/intel-iommu.h is private to Intel IOMMU
> > driver. They should be put in a header like drivers/iommu/intel
> > /iommu.h. Eventually, we should remove include/linux/intel-iommu.h
> > and device drivers interact with iommu subsystem through the IOMMU
> > kAPIs.
> >
> > Best regards,
> > baolu
> 
> Baolu's recent patch to move intel-iommu.h private still allows my
> [PATCH v2] to apply with no changes, and gets rid of the compile
> errors when CONFIG_IOMMU_SUPPORT is not set, so the kernel test robot
> should be happy now.
> 
> Is there another step I should do to bring this patch back into focus?
> 

This looks good to me.

Reviewed-by: Kevin Tian <kevin.tian@intel.com>

  reply	other threads:[~2022-05-23  6:43 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-05 19:46 [PATCH] iommu/vt-d: Increase DMAR_UNITS_SUPPORTED Steve Wahl
2022-05-05 19:46 ` Steve Wahl
2022-05-06  5:57 ` Baolu Lu
2022-05-06  5:57   ` Baolu Lu
2022-05-06  6:49   ` Tian, Kevin
2022-05-06  6:49     ` Tian, Kevin
2022-05-06  7:10     ` Rodel, Jorg
2022-05-06  7:10       ` Rodel, Jorg
2022-05-06  7:47       ` Tian, Kevin
2022-05-06  7:47         ` Tian, Kevin
2022-05-06  7:16     ` David Woodhouse
2022-05-06  7:16       ` David Woodhouse
2022-05-06  8:12       ` Tian, Kevin
2022-05-06  8:12         ` Tian, Kevin
2022-05-06 15:26         ` Steve Wahl
2022-05-06 15:26           ` Steve Wahl
2022-05-10  1:16           ` Tian, Kevin
2022-05-10  1:16             ` Tian, Kevin
2022-05-10 19:06             ` Steve Wahl
2022-05-10 19:06               ` Steve Wahl
2022-05-11  3:36               ` Tian, Kevin
2022-05-11  3:36                 ` Tian, Kevin
2022-05-12 15:13 ` [PATCH v2] iommu/vt-d: Make DMAR_UNITS_SUPPORTED a config setting Steve Wahl
2022-05-12 15:13   ` Steve Wahl
2022-05-12 23:12   ` Steve Wahl
2022-05-12 23:12     ` Steve Wahl
2022-05-13  2:09     ` Baolu Lu
2022-05-13  2:09       ` Baolu Lu
2022-05-18 19:58       ` Steve Wahl
2022-05-18 19:58         ` Steve Wahl
2022-05-23  6:43         ` Tian, Kevin [this message]
2022-05-23  6:43           ` Tian, Kevin
2022-06-13 20:38   ` Jerry Snitselaar
2022-06-13 20:38     ` Jerry Snitselaar
2022-06-14  1:33     ` Baolu Lu
2022-06-14  1:33       ` Baolu Lu
2022-06-13 20:57   ` Jerry Snitselaar
2022-06-13 20:57     ` Jerry Snitselaar
2022-06-14  1:36     ` Baolu Lu
2022-06-14  1:36       ` Baolu Lu
2022-06-14  1:44       ` Jerry Snitselaar
2022-06-14  1:44         ` Jerry Snitselaar
2022-06-14  1:51         ` Baolu Lu
2022-06-14  1:51           ` Baolu Lu
2022-06-14  1:54           ` Jerry Snitselaar
2022-06-14  1:54             ` Jerry Snitselaar
2022-06-14  2:21             ` Baolu Lu
2022-06-14  2:21               ` Baolu Lu
2022-06-14 16:45               ` Steve Wahl
2022-06-14 16:45                 ` Steve Wahl
2022-06-14 19:01                 ` Jerry Snitselaar
2022-06-14 19:01                   ` Jerry Snitselaar
2022-06-14 21:12                   ` Steve Wahl
2022-06-14 21:12                     ` Steve Wahl
2022-06-15  1:38                     ` Baolu Lu
2022-06-15  1:38                       ` Baolu Lu
2022-06-15 15:02                       ` Steve Wahl
2022-06-15 15:02                         ` Steve Wahl
2022-06-15 18:36                       ` [PATCH v3] " Steve Wahl
2022-06-15 18:36                         ` Steve Wahl
2022-06-15 18:39                         ` Jerry Snitselaar
2022-06-15 18:39                           ` Jerry Snitselaar
2022-06-22 14:52                         ` Baolu Lu
2022-06-22 14:52                           ` Baolu Lu
2022-06-22 15:05                           ` Jerry Snitselaar
2022-06-22 15:05                             ` Jerry Snitselaar
2022-06-22 15:11                             ` Steve Wahl
2022-06-22 15:11                               ` Steve Wahl
2022-06-23  2:29                             ` Baolu Lu
2022-06-23  2:29                               ` Baolu Lu
2022-06-23  2:51                               ` Jerry Snitselaar
2022-06-23  2:51                                 ` Jerry Snitselaar
2022-06-23  3:38                                 ` Baolu Lu
2022-06-23  3:38                                   ` Baolu Lu

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=BN9PR11MB5276747991B624B62B8CD1248CD49@BN9PR11MB5276.namprd11.prod.outlook.com \
    --to=kevin.tian@intel.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=dwmw2@infradead.org \
    --cc=iommu@lists.linux-foundation.org \
    --cc=jroedel@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mike.travis@hpe.com \
    --cc=russ.anderson@hpe.com \
    --cc=sivanich@hpe.com \
    --cc=steve.wahl@hpe.com \
    --cc=will@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.