All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [Bug 1631773] [NEW] hw/dma/pl080.c:354: possible typo ?
@ 2016-10-09 16:55 dcb
  2016-10-18  8:33 ` [Qemu-devel] [Bug 1631773] " T. Huth
  2017-01-11  6:37 ` Thomas Huth
  0 siblings, 2 replies; 3+ messages in thread
From: dcb @ 2016-10-09 16:55 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected:
s->conf & (0x2 | 0x2). Consider verifying it.

Source code is

       if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {

Maybe better code

       if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) {

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1631773

Title:
  hw/dma/pl080.c:354: possible typo ?

Status in QEMU:
  New

Bug description:
  hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected:
  s->conf & (0x2 | 0x2). Consider verifying it.

  Source code is

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {

  Maybe better code

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) {

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1631773/+subscriptions

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [Bug 1631773] Re: hw/dma/pl080.c:354: possible typo ?
  2016-10-09 16:55 [Qemu-devel] [Bug 1631773] [NEW] hw/dma/pl080.c:354: possible typo ? dcb
@ 2016-10-18  8:33 ` T. Huth
  2017-01-11  6:37 ` Thomas Huth
  1 sibling, 0 replies; 3+ messages in thread
From: T. Huth @ 2016-10-18  8:33 UTC (permalink / raw)
  To: qemu-devel

Thanks for reporting the issue, patch has now been included here:
http://git.qemu.org/?p=qemu.git;a=commitdiff;h=04bb79d1f519ae190a

** Changed in: qemu
       Status: New => Fix Committed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1631773

Title:
  hw/dma/pl080.c:354: possible typo ?

Status in QEMU:
  Fix Committed

Bug description:
  hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected:
  s->conf & (0x2 | 0x2). Consider verifying it.

  Source code is

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {

  Maybe better code

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) {

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1631773/+subscriptions

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [Bug 1631773] Re: hw/dma/pl080.c:354: possible typo ?
  2016-10-09 16:55 [Qemu-devel] [Bug 1631773] [NEW] hw/dma/pl080.c:354: possible typo ? dcb
  2016-10-18  8:33 ` [Qemu-devel] [Bug 1631773] " T. Huth
@ 2017-01-11  6:37 ` Thomas Huth
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2017-01-11  6:37 UTC (permalink / raw)
  To: qemu-devel

Released with version 2.8.

** Changed in: qemu
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1631773

Title:
  hw/dma/pl080.c:354: possible typo ?

Status in QEMU:
  Fix Released

Bug description:
  hw/dma/pl080.c:354:1: warning: V578 An odd bitwise operation detected:
  s->conf & (0x2 | 0x2). Consider verifying it.

  Source code is

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M1)) {

  Maybe better code

         if (s->conf & (PL080_CONF_M1 | PL080_CONF_M2)) {

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1631773/+subscriptions

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-11  6:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-09 16:55 [Qemu-devel] [Bug 1631773] [NEW] hw/dma/pl080.c:354: possible typo ? dcb
2016-10-18  8:33 ` [Qemu-devel] [Bug 1631773] " T. Huth
2017-01-11  6:37 ` Thomas Huth

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.