All of lore.kernel.org
 help / color / mirror / Atom feed
From: Michael Nawrocki <michael.nawrocki@gtri.gatech.edu>
To: Thomas Huth <thuth@redhat.com>, qemu-devel@nongnu.org
Cc: marcel@redhat.com, Peter Maydell <peter.maydell@linaro.org>,
	Jason Wang <jasowang@redhat.com>,
	qemu-s390x@nongnu.org, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 1/2] Fix eepro100 simple transmission mode
Date: Thu, 16 Nov 2017 13:09:08 -0500	[thread overview]
Message-ID: <428e44cb-5f51-d47c-f8ff-f0ce504ab976@gtri.gatech.edu> (raw)
In-Reply-To: <59e0dcbc-ed53-8fc5-4a0f-3830056f2145@redhat.com>

On 11/16/2017 12:43 PM, Thomas Huth wrote:
> On 16.11.2017 17:59, Thomas Huth wrote:
>> On 06.11.2017 21:35, Mike Nawrocki wrote:
>>> The simple transmission mode was treating the area immediately after the
>>> transmit command block (TCB) as if it were a transmit buffer descriptor,
>>> when in reality it is simply the packet data. This change simply copies
>>> the data following the TCB into the packet buffer.
>>>
>>> Signed-off-by: Mike Nawrocki <michael.nawrocki@gtri.gatech.edu>
>>> ---
>>>   hw/net/eepro100.c | 18 +++---------------
>>>   1 file changed, 3 insertions(+), 15 deletions(-)
>>>
>>> diff --git a/hw/net/eepro100.c b/hw/net/eepro100.c
>>> index 80b8f47c4b..91dd058010 100644
>>> --- a/hw/net/eepro100.c
>>> +++ b/hw/net/eepro100.c
>>> @@ -774,23 +774,11 @@ static void tx_command(EEPRO100State *s)
>>>       }
>>>       assert(tcb_bytes <= sizeof(buf));
>>>       while (size < tcb_bytes) {
>>> -        uint32_t tx_buffer_address = ldl_le_pci_dma(&s->dev, tbd_address);
>>> -        uint16_t tx_buffer_size = lduw_le_pci_dma(&s->dev, tbd_address + 4);
>>> -#if 0
>>> -        uint16_t tx_buffer_el = lduw_le_pci_dma(&s->dev, tbd_address + 6);
>>> -#endif
>>> -        if (tx_buffer_size == 0) {
>>> -            /* Prevent an endless loop. */
>>> -            logout("loop in %s:%u\n", __FILE__, __LINE__);
>>> -            break;
>>> -        }
>>> -        tbd_address += 8;
>>>           TRACE(RXTX, logout
>>>               ("TBD (simplified mode): buffer address 0x%08x, size 0x%04x\n",
>>> -             tx_buffer_address, tx_buffer_size));
>>> -        tx_buffer_size = MIN(tx_buffer_size, sizeof(buf) - size);
>>> -        pci_dma_read(&s->dev, tx_buffer_address, &buf[size], tx_buffer_size);
>>> -        size += tx_buffer_size;
>>> +             tbd_address, tcb_bytes));
>>> +        pci_dma_read(&s->dev, tbd_address, &buf[size], tcb_bytes);
>>> +        size += tcb_bytes;
>>>       }
>>>       if (tbd_array == 0xffffffff) {
>>>           /* Simplified mode. Was already handled by code above. */
>>>
>>
>>   Hi,
>>
>> I've got no clue why, but apparently this patch introduced a regression
>> in rc1: The tests/pxe-test is now failing on a big endian (s390x) host
>> when testing the i82550 device.
>> It's working fine with commit 8fa5ad6dfb66b6c695aa6a6b54b7031c (and
>> 2.11-rc0), and it's broken starting with commit
>> 1865e288a823c764cd4344d704e33344 ... do you have any clue what might be
>> wrong here now?
> 
> This patch seems to fix the issue for me:
> 
> diff --git a/hw/net/eepro100.c b/hw/net/eepro100.c
> index a63ed2c..03e00f7 100644
> --- a/hw/net/eepro100.c
> +++ b/hw/net/eepro100.c
> @@ -756,8 +756,8 @@ static void read_cb(EEPRO100State *s)
>   
>   static void tx_command(EEPRO100State *s)
>   {
> -    uint32_t tbd_array = le32_to_cpu(s->tx.tbd_array_addr);
> -    uint16_t tcb_bytes = (le16_to_cpu(s->tx.tcb_bytes) & 0x3fff);
> +    uint32_t tbd_array = s->tx.tbd_array_addr;
> +    uint16_t tcb_bytes = s->tx.tcb_bytes & 0x3fff;
>       /* Sends larger than MAX_ETH_FRAME_SIZE are allowed, up to 2600 bytes. */
>       uint8_t buf[2600];
>       uint16_t size = 0;
> 
> Does that make sense? I think the fields are already swapped in
> read_cb(), so no need to swap them in tx_command() again?
> 
>   Thomas
> 

That makes sense to me. Not entirely sure why my patch caused the 
regression, but your patch seems like the correct behavior here.

Thanks,
Mike

  reply	other threads:[~2017-11-16 18:09 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-06 20:35 [Qemu-devel] [PATCH v2 0/2] Fix eepro100 simple transmission, add i82559 PCI ID Mike Nawrocki
2017-11-06 20:35 ` [Qemu-devel] [PATCH v2 1/2] Fix eepro100 simple transmission mode Mike Nawrocki
2017-11-16 16:59   ` Thomas Huth
2017-11-16 17:43     ` Thomas Huth
2017-11-16 18:09       ` Michael Nawrocki [this message]
2017-11-06 20:35 ` [Qemu-devel] [PATCH v2 2/2] Add new PCI ID for i82559a Mike Nawrocki
2017-11-07 16:12   ` Michael S. Tsirkin
2017-11-07 18:25     ` Michael Nawrocki
2017-11-14 21:41   ` Stefan Weil
2017-11-15 11:20     ` Jason Wang
2017-11-15 13:09     ` Michael Nawrocki
2017-11-16  2:33       ` Jason Wang
2017-11-16  6:40       ` Stefan Weil
2017-11-16  8:59         ` Jason Wang

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=428e44cb-5f51-d47c-f8ff-f0ce504ab976@gtri.gatech.edu \
    --to=michael.nawrocki@gtri.gatech.edu \
    --cc=jasowang@redhat.com \
    --cc=marcel@redhat.com \
    --cc=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=thuth@redhat.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.