All of lore.kernel.org
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@alien8.de>
To: Thor Thayer <thor.thayer@linux.intel.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	James Morse <james.morse@arm.com>,
	linux-edac@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] EDAC/altera: Silence an endian warning
Date: Wed, 07 Aug 2019 08:46:43 +0000	[thread overview]
Message-ID: <20190807084643.GA18207@zn.tnic> (raw)
In-Reply-To: <2baa5124-f0b0-a33e-256b-6a17867862c9@linux.intel.com>

On Mon, Jun 24, 2019 at 03:27:55PM -0500, Thor Thayer wrote:
> Hi Dan,
> 
> On 6/24/19 8:47 AM, Dan Carpenter wrote:
> > Smatch complains that we're casting a u32 pointer to unsigned long.
> > 
> >      drivers/edac/altera_edac.c:1878 altr_edac_a10_irq_handler()
> >      warn: passing casted pointer '&irq_status' to 'find_first_bit()'
> > 
> > This code wouldn't work on a 64 bit big endian system because we would
> > read past the end of &irq_status.
> > 
> > Fixes: 13ab8448d2c9 ("EDAC, altera: Add ECC Manager IRQ controller support")
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> > ---
> > Static analysis obviously and I don't know this subsystem at all.
> > Probably we're never going to run this on a 64 bit big endian system...
> > Feel free to ignore this if you want.
> > 
> >   drivers/edac/altera_edac.c | 4 +++-
> >   1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c
> > index c2e693e34d43..bf024ec0116c 100644
> > --- a/drivers/edac/altera_edac.c
> > +++ b/drivers/edac/altera_edac.c
> > @@ -1866,6 +1866,7 @@ static void altr_edac_a10_irq_handler(struct irq_desc *desc)
> >   	struct altr_arria10_edac *edac = irq_desc_get_handler_data(desc);
> >   	struct irq_chip *chip = irq_desc_get_chip(desc);
> >   	int irq = irq_desc_get_irq(desc);
> > +	unsigned long bits;
> >   	dberr = (irq = edac->db_irq) ? 1 : 0;
> >   	sm_offset = dberr ? A10_SYSMGR_ECC_INTSTAT_DERR_OFST :
> > @@ -1875,7 +1876,8 @@ static void altr_edac_a10_irq_handler(struct irq_desc *desc)
> >   	regmap_read(edac->ecc_mgr_map, sm_offset, &irq_status);
> > -	for_each_set_bit(bit, (unsigned long *)&irq_status, 32) {
> > +	bits = irq_status;
> > +	for_each_set_bit(bit, &bits, 32) {
> >   		irq = irq_linear_revmap(edac->domain, dberr * 32 + bit);
> >   		if (irq)
> >   			generic_handle_irq(irq);
> > 
> You are correct that we shouldn't use this on a 64 bit machine but this is a
> good fix. Thank you!
> 
> Reviewed-by: Thor Thayer <thor.thayer@linux.intel.com>

Applied, thanks.

-- 
Regards/Gruss,
    Boris.

Good mailing practices for 400: avoid top-posting and trim the reply.

WARNING: multiple messages have this Message-ID (diff)
From: Borislav Petkov <bp@alien8.de>
To: Thor Thayer <thor.thayer@linux.intel.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	James Morse <james.morse@arm.com>,
	linux-edac@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] EDAC/altera: Silence an endian warning
Date: Wed, 7 Aug 2019 10:46:43 +0200	[thread overview]
Message-ID: <20190807084643.GA18207@zn.tnic> (raw)
In-Reply-To: <2baa5124-f0b0-a33e-256b-6a17867862c9@linux.intel.com>

On Mon, Jun 24, 2019 at 03:27:55PM -0500, Thor Thayer wrote:
> Hi Dan,
> 
> On 6/24/19 8:47 AM, Dan Carpenter wrote:
> > Smatch complains that we're casting a u32 pointer to unsigned long.
> > 
> >      drivers/edac/altera_edac.c:1878 altr_edac_a10_irq_handler()
> >      warn: passing casted pointer '&irq_status' to 'find_first_bit()'
> > 
> > This code wouldn't work on a 64 bit big endian system because we would
> > read past the end of &irq_status.
> > 
> > Fixes: 13ab8448d2c9 ("EDAC, altera: Add ECC Manager IRQ controller support")
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> > ---
> > Static analysis obviously and I don't know this subsystem at all.
> > Probably we're never going to run this on a 64 bit big endian system...
> > Feel free to ignore this if you want.
> > 
> >   drivers/edac/altera_edac.c | 4 +++-
> >   1 file changed, 3 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/edac/altera_edac.c b/drivers/edac/altera_edac.c
> > index c2e693e34d43..bf024ec0116c 100644
> > --- a/drivers/edac/altera_edac.c
> > +++ b/drivers/edac/altera_edac.c
> > @@ -1866,6 +1866,7 @@ static void altr_edac_a10_irq_handler(struct irq_desc *desc)
> >   	struct altr_arria10_edac *edac = irq_desc_get_handler_data(desc);
> >   	struct irq_chip *chip = irq_desc_get_chip(desc);
> >   	int irq = irq_desc_get_irq(desc);
> > +	unsigned long bits;
> >   	dberr = (irq == edac->db_irq) ? 1 : 0;
> >   	sm_offset = dberr ? A10_SYSMGR_ECC_INTSTAT_DERR_OFST :
> > @@ -1875,7 +1876,8 @@ static void altr_edac_a10_irq_handler(struct irq_desc *desc)
> >   	regmap_read(edac->ecc_mgr_map, sm_offset, &irq_status);
> > -	for_each_set_bit(bit, (unsigned long *)&irq_status, 32) {
> > +	bits = irq_status;
> > +	for_each_set_bit(bit, &bits, 32) {
> >   		irq = irq_linear_revmap(edac->domain, dberr * 32 + bit);
> >   		if (irq)
> >   			generic_handle_irq(irq);
> > 
> You are correct that we shouldn't use this on a 64 bit machine but this is a
> good fix. Thank you!
> 
> Reviewed-by: Thor Thayer <thor.thayer@linux.intel.com>

Applied, thanks.

-- 
Regards/Gruss,
    Boris.

Good mailing practices for 400: avoid top-posting and trim the reply.

  reply	other threads:[~2019-08-07  8:46 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-24 13:47 [PATCH] EDAC/altera: Silence an endian warning Dan Carpenter
2019-06-24 13:47 ` Dan Carpenter
2019-06-24 20:27 ` Thor Thayer
2019-06-24 20:27   ` Thor Thayer
2019-08-07  8:46   ` Borislav Petkov [this message]
2019-08-07  8:46     ` Borislav Petkov

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=20190807084643.GA18207@zn.tnic \
    --to=bp@alien8.de \
    --cc=dan.carpenter@oracle.com \
    --cc=james.morse@arm.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-edac@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=thor.thayer@linux.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 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.