All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/11] tcg host mips64 support
@ 2017-01-09 19:02 Richard Henderson
  2017-01-09 19:08 ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: Richard Henderson @ 2017-01-09 19:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

[Bah.  This time with actual request-pull info.]

This is v6 of Jin Guojie's patch set, as tested by Aurelien Jarno,
James Hogan, and Yun Qiang Su.  Plus one more patch from me to fix
a trival Werror in mips specific code with gcc 5.3.


r~


The following changes since commit f0d703314ecb0415d51425727ed73ad2c6e3238a:

  tcg-mips: Adjust qemu_ld/st for mips64 (2017-01-06 10:09:10 -0800)

are available in the git repository at:

  git://github.com/rth7680/qemu.git tags/pull-tcg-20170108

for you to fetch changes up to f68808c7494b38764e1895a9852b994638b86536:

  translate-all: Avoid -Werror=switch-bool (2017-01-08 09:48:34 -0800)

----------------------------------------------------------------
TCG host support for mips64

----------------------------------------------------------------
Richard Henderson (1):
      translate-all: Avoid -Werror=switch-bool

 translate-all.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

* Re: [Qemu-devel] [PULL v2 00/11] tcg host mips64 support
  2017-01-09 19:02 [Qemu-devel] [PULL v2 00/11] tcg host mips64 support Richard Henderson
@ 2017-01-09 19:08 ` Peter Maydell
  2017-01-10 10:46   ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2017-01-09 19:08 UTC (permalink / raw)
  To: Richard Henderson; +Cc: QEMU Developers

On 9 January 2017 at 19:02, Richard Henderson <rth@twiddle.net> wrote:
> [Bah.  This time with actual request-pull info.]
>
> This is v6 of Jin Guojie's patch set, as tested by Aurelien Jarno,
> James Hogan, and Yun Qiang Su.  Plus one more patch from me to fix
> a trival Werror in mips specific code with gcc 5.3.
>
>
> r~
>
>
> The following changes since commit f0d703314ecb0415d51425727ed73ad2c6e3238a:
>
>   tcg-mips: Adjust qemu_ld/st for mips64 (2017-01-06 10:09:10 -0800)
>
> are available in the git repository at:
>
>   git://github.com/rth7680/qemu.git tags/pull-tcg-20170108
>
> for you to fetch changes up to f68808c7494b38764e1895a9852b994638b86536:
>
>   translate-all: Avoid -Werror=switch-bool (2017-01-08 09:48:34 -0800)
>
> ----------------------------------------------------------------
> TCG host support for mips64
>
> ----------------------------------------------------------------
> Richard Henderson (1):
>       translate-all: Avoid -Werror=switch-bool
>
>  translate-all.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Your pullreq has more stuff in it than the above diffstat and
patchlist say :-)

tcg/mips/tcg-target.h     | 60 ++-
tcg/mips/tcg-target.inc.c | 1170
++++++++++++++++++++++++++++++++++++++++-----------
translate-all.c           | 2 +-
 3 files changed, 978 insertions(+), 254 deletions(-)

I'm processing it anyway.

thanks
-- PMM

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

* Re: [Qemu-devel] [PULL v2 00/11] tcg host mips64 support
  2017-01-09 19:08 ` Peter Maydell
@ 2017-01-10 10:46   ` Peter Maydell
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2017-01-10 10:46 UTC (permalink / raw)
  To: Richard Henderson; +Cc: QEMU Developers

On 9 January 2017 at 19:08, Peter Maydell <peter.maydell@linaro.org> wrote:
> On 9 January 2017 at 19:02, Richard Henderson <rth@twiddle.net> wrote:
>> [Bah.  This time with actual request-pull info.]
>>
>> This is v6 of Jin Guojie's patch set, as tested by Aurelien Jarno,
>> James Hogan, and Yun Qiang Su.  Plus one more patch from me to fix
>> a trival Werror in mips specific code with gcc 5.3.
>>
>>
>> r~
>>
>>
>> The following changes since commit f0d703314ecb0415d51425727ed73ad2c6e3238a:
>>
>>   tcg-mips: Adjust qemu_ld/st for mips64 (2017-01-06 10:09:10 -0800)
>>
>> are available in the git repository at:
>>
>>   git://github.com/rth7680/qemu.git tags/pull-tcg-20170108
>>
>> for you to fetch changes up to f68808c7494b38764e1895a9852b994638b86536:
>>
>>   translate-all: Avoid -Werror=switch-bool (2017-01-08 09:48:34 -0800)
>>
>> ----------------------------------------------------------------
>> TCG host support for mips64
>>
>> ----------------------------------------------------------------
>> Richard Henderson (1):
>>       translate-all: Avoid -Werror=switch-bool
>>
>>  translate-all.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> Your pullreq has more stuff in it than the above diffstat and
> patchlist say :-)
>
> tcg/mips/tcg-target.h     | 60 ++-
> tcg/mips/tcg-target.inc.c | 1170
> ++++++++++++++++++++++++++++++++++++++++-----------
> translate-all.c           | 2 +-
>  3 files changed, 978 insertions(+), 254 deletions(-)
>
> I'm processing it anyway.

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2017-01-10 10:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-09 19:02 [Qemu-devel] [PULL v2 00/11] tcg host mips64 support Richard Henderson
2017-01-09 19:08 ` Peter Maydell
2017-01-10 10:46   ` Peter Maydell

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.