All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] pcnet: Avoid double conversion via PHYSADDR
Date: Thu, 9 Apr 2009 00:59:05 +0200	[thread overview]
Message-ID: <20090408225905.GD23493@volta.aurel32.net> (raw)
In-Reply-To: <49DB8E51.2000200@siemens.com>

On Tue, Apr 07, 2009 at 07:33:05PM +0200, Jan Kiszka wrote:
> rdra and tdra are already kept converted in the pcnet state structure.
> Avoid converting derivatives a second time. The same case with the local
> variable xmit_cxda: it already contains a converted cxda address. This
> issue only causes troubles when using the pcnet in 16-bit legacy mode.
> 
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> ---

Thanks, applied.


>  hw/pcnet.c |   20 ++++++++++----------
>  1 files changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/hw/pcnet.c b/hw/pcnet.c
> index 15167ac..be68f28 100644
> --- a/hw/pcnet.c
> +++ b/hw/pcnet.c
> @@ -964,11 +964,11 @@ static void pcnet_rdte_poll(PCNetState *s)
>              (BCR_SWSTYLE(s) ? 16 : 8 );
>  #endif
>  
> -        CHECK_RMD(PHYSADDR(s,crda), bad);
> +        CHECK_RMD(crda, bad);
>          if (!bad) {
> -            CHECK_RMD(PHYSADDR(s,nrda), bad);
> +            CHECK_RMD(nrda, bad);
>              if (bad || (nrda == crda)) nrda = 0;
> -            CHECK_RMD(PHYSADDR(s,nnrd), bad);
> +            CHECK_RMD(nnrd, bad);
>              if (bad || (nnrd == crda)) nnrd = 0;
>  
>              s->csr[28] = crda & 0xffff;
> @@ -980,11 +980,11 @@ static void pcnet_rdte_poll(PCNetState *s)
>  #ifdef PCNET_DEBUG
>              if (bad) {
>                  printf("pcnet: BAD RMD RECORDS AFTER 0x" TARGET_FMT_plx "\n",
> -                       PHYSADDR(s,crda));
> +                       crda);
>              }
>          } else {
>              printf("pcnet: BAD RMD RDA=0x" TARGET_FMT_plx "\n",
> -                   PHYSADDR(s,crda));
> +                   crda);
>  #endif
>          }
>      }
> @@ -1023,7 +1023,7 @@ static int pcnet_tdte_poll(PCNetState *s)
>              (CSR_XMTRL(s) - CSR_XMTRC(s)) *
>              (BCR_SWSTYLE(s) ? 16 : 8);
>          int bad = 0;
> -        CHECK_TMD(PHYSADDR(s, cxda),bad);
> +        CHECK_TMD(cxda, bad);
>          if (!bad) {
>              if (CSR_CXDA(s) != cxda) {
>                  s->csr[60] = s->csr[34];
> @@ -1034,7 +1034,7 @@ static int pcnet_tdte_poll(PCNetState *s)
>              s->csr[34] = cxda & 0xffff;
>              s->csr[35] = cxda >> 16;
>  #ifdef PCNET_DEBUG_X
> -            printf("pcnet: BAD TMD XDA=0x%08x\n", PHYSADDR(s,cxda));
> +            printf("pcnet: BAD TMD XDA=0x%08x\n", cxda);
>  #endif
>          }
>      }
> @@ -1107,7 +1107,7 @@ static void pcnet_receive(void *opaque, const uint8_t *buf, int size)
>                  nrda = s->rdra +
>                      (CSR_RCVRL(s) - rcvrc) *
>                      (BCR_SWSTYLE(s) ? 16 : 8 );
> -                RMDLOAD(&rmd, PHYSADDR(s,nrda));
> +                RMDLOAD(&rmd, nrda);
>                  if (GET_FIELD(rmd.status, RMDS, OWN)) {
>  #ifdef PCNET_DEBUG_RMD
>                      printf("pcnet - scan buffer: RCVRC=%d PREV_RCVRC=%d\n",
> @@ -1319,12 +1319,12 @@ static void pcnet_transmit(PCNetState *s)
>      } else
>      if (s->xmit_pos >= 0) {
>          struct pcnet_TMD tmd;
> -        TMDLOAD(&tmd, PHYSADDR(s,xmit_cxda));
> +        TMDLOAD(&tmd, xmit_cxda);
>          SET_FIELD(&tmd.misc, TMDM, BUFF, 1);
>          SET_FIELD(&tmd.misc, TMDM, UFLO, 1);
>          SET_FIELD(&tmd.status, TMDS, ERR, 1);
>          SET_FIELD(&tmd.status, TMDS, OWN, 0);
> -        TMDSTORE(&tmd, PHYSADDR(s,xmit_cxda));
> +        TMDSTORE(&tmd, xmit_cxda);
>          s->csr[0] |= 0x0200;    /* set TINT */
>          if (!CSR_DXSUFLO(s)) {
>              s->csr[0] &= ~0x0010;
> 
> 
> 
> 

-- 
Aurelien Jarno	                        GPG: 1024D/F1BCDB73
aurelien@aurel32.net                 http://www.aurel32.net

      reply	other threads:[~2009-04-08 22:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-07 17:33 [Qemu-devel] [PATCH] pcnet: Avoid double conversion via PHYSADDR Jan Kiszka
2009-04-08 22:59 ` Aurelien Jarno [this message]

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=20090408225905.GD23493@volta.aurel32.net \
    --to=aurelien@aurel32.net \
    --cc=jan.kiszka@siemens.com \
    --cc=qemu-devel@nongnu.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.