All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will.deacon-5wv7dgnIgG8@public.gmane.org>
To: Olav Haugan <ohaugan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: "linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
	<linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	"iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org"
	<iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>,
	"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
	<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>
Subject: Re: [PATCH v3 1/1] iommu/arm-smmu: Do not access non-existing S2CR registers
Date: Fri, 22 Aug 2014 16:22:15 +0100	[thread overview]
Message-ID: <20140822152215.GC17255@arm.com> (raw)
In-Reply-To: <1408403858-16766-1-git-send-email-ohaugan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>

Hi Olav,

Some really minor comments, but this looks good.

On Tue, Aug 19, 2014 at 12:17:38AM +0100, Olav Haugan wrote:
> The number of S2CR registers is not properly set when stream
> matching is not supported. Fix this and add check that we do not try to
> access outside of the number of S2CR regisrers.
> 
> Signed-off-by: Olav Haugan <ohaugan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
> ---
>  drivers/iommu/arm-smmu.c | 24 +++++++++++++++++-------
>  1 file changed, 17 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
> index 9fd8754d..a050f7a 100644
> --- a/drivers/iommu/arm-smmu.c
> +++ b/drivers/iommu/arm-smmu.c
> @@ -548,9 +548,16 @@ static int register_smmu_master(struct arm_smmu_device *smmu,
>  	master->of_node			= masterspec->np;
>  	master->cfg.num_streamids	= masterspec->args_count;
>  
> -	for (i = 0; i < master->cfg.num_streamids; ++i)
> +	for (i = 0; i < master->cfg.num_streamids; ++i) {
> +		if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH) &&
> +		     (masterspec->args[i] >= smmu->num_mapping_groups)) {

Can we stick masterspec->args[i] into a loop-local streamid variable,
please?

> +			dev_err(dev,
> +				"stream ID for master device %s greater than maximum allowed (%d)\n",
> +				masterspec->np->name, smmu->num_mapping_groups);
> +			return -ENOSPC;

-ERANGE might be better.

Will

WARNING: multiple messages have this Message-ID (diff)
From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 1/1] iommu/arm-smmu: Do not access non-existing S2CR registers
Date: Fri, 22 Aug 2014 16:22:15 +0100	[thread overview]
Message-ID: <20140822152215.GC17255@arm.com> (raw)
In-Reply-To: <1408403858-16766-1-git-send-email-ohaugan@codeaurora.org>

Hi Olav,

Some really minor comments, but this looks good.

On Tue, Aug 19, 2014 at 12:17:38AM +0100, Olav Haugan wrote:
> The number of S2CR registers is not properly set when stream
> matching is not supported. Fix this and add check that we do not try to
> access outside of the number of S2CR regisrers.
> 
> Signed-off-by: Olav Haugan <ohaugan@codeaurora.org>
> ---
>  drivers/iommu/arm-smmu.c | 24 +++++++++++++++++-------
>  1 file changed, 17 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
> index 9fd8754d..a050f7a 100644
> --- a/drivers/iommu/arm-smmu.c
> +++ b/drivers/iommu/arm-smmu.c
> @@ -548,9 +548,16 @@ static int register_smmu_master(struct arm_smmu_device *smmu,
>  	master->of_node			= masterspec->np;
>  	master->cfg.num_streamids	= masterspec->args_count;
>  
> -	for (i = 0; i < master->cfg.num_streamids; ++i)
> +	for (i = 0; i < master->cfg.num_streamids; ++i) {
> +		if (!(smmu->features & ARM_SMMU_FEAT_STREAM_MATCH) &&
> +		     (masterspec->args[i] >= smmu->num_mapping_groups)) {

Can we stick masterspec->args[i] into a loop-local streamid variable,
please?

> +			dev_err(dev,
> +				"stream ID for master device %s greater than maximum allowed (%d)\n",
> +				masterspec->np->name, smmu->num_mapping_groups);
> +			return -ENOSPC;

-ERANGE might be better.

Will

  parent reply	other threads:[~2014-08-22 15:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-18 23:17 [PATCH v3 1/1] iommu/arm-smmu: Do not access non-existing S2CR registers Olav Haugan
2014-08-18 23:17 ` Olav Haugan
     [not found] ` <1408403858-16766-1-git-send-email-ohaugan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2014-08-22 15:22   ` Will Deacon [this message]
2014-08-22 15:22     ` Will Deacon
2014-08-22 23:56     ` Olav Haugan
2014-08-22 23:56       ` Olav Haugan

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=20140822152215.GC17255@arm.com \
    --to=will.deacon-5wv7dgnigg8@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=ohaugan-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.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.