qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] rtl8139 bugfix
@ 2012-05-08 14:20 Michael S. Tsirkin
  2012-05-08 14:39 ` Michael S. Tsirkin
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Michael S. Tsirkin @ 2012-05-08 14:20 UTC (permalink / raw)
  To: qemu-devel, Anthony Liguori; +Cc: avi, mst

The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae:

  hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400)

are available in the git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git 

for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:

  rtl8139: fix regression in TxStatus/TxAddr read (2012-05-08 17:09:53 +0300)

----------------------------------------------------------------
rtl8139 bugfix

This pull fixes a bug in rtl8139 that affects 32 bit users.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Avi Kivity (1):
      rtl8139: fix regression in TxStatus/TxAddr read

 hw/rtl8139.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:20 [Qemu-devel] [PULL] rtl8139 bugfix Michael S. Tsirkin
@ 2012-05-08 14:39 ` Michael S. Tsirkin
  2012-05-08 14:40 ` Anthony Liguori
  2012-05-08 16:11 ` Anthony Liguori
  2 siblings, 0 replies; 9+ messages in thread
From: Michael S. Tsirkin @ 2012-05-08 14:39 UTC (permalink / raw)
  To: qemu-devel, Anthony Liguori; +Cc: avi

On Tue, May 08, 2012 at 05:20:12PM +0300, Michael S. Tsirkin wrote:
> The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
> 
>   hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git 
> 

Ugh, sent this too fast the actual URL is:
   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git refs/tags/for_anthony

sorry about the noise.

> for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:
> 
>   rtl8139: fix regression in TxStatus/TxAddr read (2012-05-08 17:09:53 +0300)


> ----------------------------------------------------------------
> rtl8139 bugfix
> 
> This pull fixes a bug in rtl8139 that affects 32 bit users.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> ----------------------------------------------------------------
> Avi Kivity (1):
>       rtl8139: fix regression in TxStatus/TxAddr read
> 
>  hw/rtl8139.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:20 [Qemu-devel] [PULL] rtl8139 bugfix Michael S. Tsirkin
  2012-05-08 14:39 ` Michael S. Tsirkin
@ 2012-05-08 14:40 ` Anthony Liguori
  2012-05-08 14:43   ` Avi Kivity
  2012-05-08 14:55   ` Michael S. Tsirkin
  2012-05-08 16:11 ` Anthony Liguori
  2 siblings, 2 replies; 9+ messages in thread
From: Anthony Liguori @ 2012-05-08 14:40 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel, avi

On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
> The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>
>    hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400)
>
> are available in the git repository at:
>
>    git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>
> for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:

You need to use a tag/branch, not a commit.

I don't know of a way to make git fetch all available objects in a repo.

Regards,

Anthony Liguori

>
>    rtl8139: fix regression in TxStatus/TxAddr read (2012-05-08 17:09:53 +0300)
>
> ----------------------------------------------------------------
> rtl8139 bugfix
>
> This pull fixes a bug in rtl8139 that affects 32 bit users.
>
> Signed-off-by: Michael S. Tsirkin<mst@redhat.com>
>
> ----------------------------------------------------------------
> Avi Kivity (1):
>        rtl8139: fix regression in TxStatus/TxAddr read
>
>   hw/rtl8139.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
>

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:40 ` Anthony Liguori
@ 2012-05-08 14:43   ` Avi Kivity
  2012-05-08 14:49     ` Anthony Liguori
  2012-05-08 14:55   ` Michael S. Tsirkin
  1 sibling, 1 reply; 9+ messages in thread
From: Avi Kivity @ 2012-05-08 14:43 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, Michael S. Tsirkin

On 05/08/2012 05:40 PM, Anthony Liguori wrote:
> On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
>> The following changes since commit
>> 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>>
>>    hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes
>> (2012-05-07 16:31:40 +0400)
>>
>> are available in the git repository at:
>>
>>    git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>>
>> for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:
>
> You need to use a tag/branch, not a commit.
>
> I don't know of a way to make git fetch all available objects in a repo.
>

It's 'git fetch <remote>' (fetchs all reachable objects, not all
objects).  But of course Michael forgot to include the tag here, just
noting for completeness.

-- 
error compiling committee.c: too many arguments to function

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:43   ` Avi Kivity
@ 2012-05-08 14:49     ` Anthony Liguori
  2012-05-08 14:53       ` Avi Kivity
  2012-05-08 16:21       ` Paolo Bonzini
  0 siblings, 2 replies; 9+ messages in thread
From: Anthony Liguori @ 2012-05-08 14:49 UTC (permalink / raw)
  To: Avi Kivity; +Cc: qemu-devel, Michael S. Tsirkin

On 05/08/2012 09:43 AM, Avi Kivity wrote:
> On 05/08/2012 05:40 PM, Anthony Liguori wrote:
>> On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
>>> The following changes since commit
>>> 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>>>
>>>     hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes
>>> (2012-05-07 16:31:40 +0400)
>>>
>>> are available in the git repository at:
>>>
>>>     git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>>>
>>> for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:
>>
>> You need to use a tag/branch, not a commit.
>>
>> I don't know of a way to make git fetch all available objects in a repo.
>>
>
> It's 'git fetch<remote>' (fetchs all reachable objects, not all
> objects).

That will just fetch based on your refspec.  But without for an unnamed commit, 
i don't think there's a possible refspec that can describe all commits.

Regards,

Anthony Liguori

   But of course Michael forgot to include the tag here, just
> noting for completeness.
>

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:49     ` Anthony Liguori
@ 2012-05-08 14:53       ` Avi Kivity
  2012-05-08 16:21       ` Paolo Bonzini
  1 sibling, 0 replies; 9+ messages in thread
From: Avi Kivity @ 2012-05-08 14:53 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, Michael S. Tsirkin

On 05/08/2012 05:49 PM, Anthony Liguori wrote:
> On 05/08/2012 09:43 AM, Avi Kivity wrote:
>> On 05/08/2012 05:40 PM, Anthony Liguori wrote:
>>> On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
>>>> The following changes since commit
>>>> 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>>>>
>>>>     hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes
>>>> (2012-05-07 16:31:40 +0400)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>     git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>>>>
>>>> for you to fetch changes up to
>>>> bdc62e62ead1a6c2a113934bf28cb5abef48618d:
>>>
>>> You need to use a tag/branch, not a commit.
>>>
>>> I don't know of a way to make git fetch all available objects in a
>>> repo.
>>>
>>
>> It's 'git fetch<remote>' (fetchs all reachable objects, not all
>> objects).
>
> That will just fetch based on your refspec.  But without for an
> unnamed commit, i don't think there's a possible refspec that can
> describe all commits.

Right, it only works if a branch/tag was pushed.

-- 
error compiling committee.c: too many arguments to function

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:40 ` Anthony Liguori
  2012-05-08 14:43   ` Avi Kivity
@ 2012-05-08 14:55   ` Michael S. Tsirkin
  1 sibling, 0 replies; 9+ messages in thread
From: Michael S. Tsirkin @ 2012-05-08 14:55 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, avi

On Tue, May 08, 2012 at 09:40:54AM -0500, Anthony Liguori wrote:
> On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
> >The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
> >
> >   hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400)
> >
> >are available in the git repository at:
> >
> >   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
> >
> >for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:
> 
> You need to use a tag/branch, not a commit.

Yes my script broke and I didn't notice. Sent the right location now,
it's
  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git refs/tags/for_anthony

> 
> I don't know of a way to make git fetch all available objects in a repo.
> 
> Regards,
> 
> Anthony Liguori

When there's a will, there's a way: you could get all tags and heads:

git fetch git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git \
refs/tags/*:refs/remotes/mst/tags/* \
refs/heads/*:refs/remotes/mst/heads/*

and then merge the commit:

git merge bdc62e62ead1a6c2a113934bf28cb5abef48618d:

But that's just an apropos. I made a mistake, hopefully
corrected.

-- 
MST

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:20 [Qemu-devel] [PULL] rtl8139 bugfix Michael S. Tsirkin
  2012-05-08 14:39 ` Michael S. Tsirkin
  2012-05-08 14:40 ` Anthony Liguori
@ 2012-05-08 16:11 ` Anthony Liguori
  2 siblings, 0 replies; 9+ messages in thread
From: Anthony Liguori @ 2012-05-08 16:11 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel, avi

On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
> The following changes since commit 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>
>    hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes (2012-05-07 16:31:40 +0400)

Pulled.  Thanks.

Regards,

Anthony Liguori

>
> are available in the git repository at:
>
>    git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>
> for you to fetch changes up to bdc62e62ead1a6c2a113934bf28cb5abef48618d:
>
>    rtl8139: fix regression in TxStatus/TxAddr read (2012-05-08 17:09:53 +0300)
>
> ----------------------------------------------------------------
> rtl8139 bugfix
>
> This pull fixes a bug in rtl8139 that affects 32 bit users.
>
> Signed-off-by: Michael S. Tsirkin<mst@redhat.com>
>
> ----------------------------------------------------------------
> Avi Kivity (1):
>        rtl8139: fix regression in TxStatus/TxAddr read
>
>   hw/rtl8139.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
>

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

* Re: [Qemu-devel] [PULL] rtl8139 bugfix
  2012-05-08 14:49     ` Anthony Liguori
  2012-05-08 14:53       ` Avi Kivity
@ 2012-05-08 16:21       ` Paolo Bonzini
  1 sibling, 0 replies; 9+ messages in thread
From: Paolo Bonzini @ 2012-05-08 16:21 UTC (permalink / raw)
  To: qemu-devel

Il 08/05/2012 16:49, Anthony Liguori ha scritto:
> On 05/08/2012 09:43 AM, Avi Kivity wrote:
>> On 05/08/2012 05:40 PM, Anthony Liguori wrote:
>>> On 05/08/2012 09:20 AM, Michael S. Tsirkin wrote:
>>>> The following changes since commit
>>>> 847c25d01cbe8e4fe457a7426f82daaaf3287aae:
>>>>
>>>>     hw/ac97: Mask out the EAPD bit on Powerdown Ctrl/Stat writes
>>>> (2012-05-07 16:31:40 +0400)
>>>>
>>>> are available in the git repository at:
>>>>
>>>>     git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git
>>>>
>>>> for you to fetch changes up to
>>>> bdc62e62ead1a6c2a113934bf28cb5abef48618d:
>>>
>>> You need to use a tag/branch, not a commit.
>>>
>>> I don't know of a way to make git fetch all available objects in a repo.
>>>
>>
>> It's 'git fetch<remote>' (fetchs all reachable objects, not all
>> objects).
> 
> That will just fetch based on your refspec.  But without for an unnamed
> commit, i don't think there's a possible refspec that can describe all
> commits.

There is bdc62e62ead1a6c2a113934bf28cb5abef48618d:from-mst :)

Paolo

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

end of thread, other threads:[~2012-05-08 16:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-08 14:20 [Qemu-devel] [PULL] rtl8139 bugfix Michael S. Tsirkin
2012-05-08 14:39 ` Michael S. Tsirkin
2012-05-08 14:40 ` Anthony Liguori
2012-05-08 14:43   ` Avi Kivity
2012-05-08 14:49     ` Anthony Liguori
2012-05-08 14:53       ` Avi Kivity
2012-05-08 16:21       ` Paolo Bonzini
2012-05-08 14:55   ` Michael S. Tsirkin
2012-05-08 16:11 ` Anthony Liguori

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).