qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Sebastian Huber <sebastian.huber@embedded-brains.de>,
	Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: "qemu-devel@nongnu.org Developers" <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2] net: cadence_gem: Set initial MAC address
Date: Wed, 03 Jun 2015 17:44:04 +0800	[thread overview]
Message-ID: <556ECC64.5000403@redhat.com> (raw)
In-Reply-To: <556EC148.7010503@embedded-brains.de>



On 06/03/2015 04:56 PM, Sebastian Huber wrote:
> Ping.
>
> Attached is a rebased version.

Hi. I believe you need post a formal inline V2 patch for this.

Thanks

>
> On 30/01/15 18:56, Peter Crosthwaite wrote:
>> On Thu, Jan 29, 2015 at 9:48 PM, Sebastian Huber
>> <sebastian.huber@embedded-brains.de> wrote:
>>> Set initial MAC address to the one specified by the command line.
>>>
>>> Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
>>> Reviewed-by: Jason Wang <jasowang@redhat.com>
>>>
>>> v2: Remove superfluous whitespace change.
>> The inter-spin change-logs should not go into commit messages. This
>> should be below the ---. With this removed (placed below the ---):
>>
>> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
>>
>>> ---
>> Change-logs go here.
>>
>> Regards,
>> Peter
>>
>>>   hw/net/cadence_gem.c | 6 ++++++
>>>   1 file changed, 6 insertions(+)
>>>
>>> diff --git a/hw/net/cadence_gem.c b/hw/net/cadence_gem.c
>>> index de26609..f9a7af1 100644
>>> --- a/hw/net/cadence_gem.c
>>> +++ b/hw/net/cadence_gem.c
>>> @@ -1005,6 +1005,7 @@ static void gem_reset(DeviceState *d)
>>>   {
>>>       int i;
>>>       GemState *s = GEM(d);
>>> +    const uint8_t *a;
>>>
>>>       DB_PRINT("\n");
>>>
>>> @@ -1023,6 +1024,11 @@ static void gem_reset(DeviceState *d)
>>>       s->regs[GEM_DESCONF5] = 0x002f2145;
>>>       s->regs[GEM_DESCONF6] = 0x00000200;
>>>
>>> +    /* Set MAC address */
>>> +    a = &s->conf.macaddr.a[0];
>>> +    s->regs[GEM_SPADDR1LO] = a[0] | (a[1] << 8) | (a[2] << 16) |
>>> (a[3] << 24);
>>> +    s->regs[GEM_SPADDR1HI] = a[4] | (a[5] << 8);
>>> +
>>>       for (i = 0; i < 4; i++) {
>>>           s->sar_active[i] = false;
>>>       }
>>> -- 
>>> 1.8.4.5
>>>
>>>
>

      reply	other threads:[~2015-06-03  9:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-30  5:48 [Qemu-devel] [PATCH v2] net: cadence_gem: Set initial MAC address Sebastian Huber
2015-01-30 17:56 ` Peter Crosthwaite
2015-06-03  8:56   ` Sebastian Huber
2015-06-03  9:44     ` Jason Wang [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=556ECC64.5000403@redhat.com \
    --to=jasowang@redhat.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sebastian.huber@embedded-brains.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).