* [Qemu-devel] [PATCH 0/9] AREG0 patches
@ 2011-06-19 20:57 Blue Swirl
2011-06-19 21:55 ` Andreas Färber
0 siblings, 1 reply; 3+ messages in thread
From: Blue Swirl @ 2011-06-19 20:57 UTC (permalink / raw)
To: qemu-devel
These and the stack frame patches can be found in
git://repo.or.cz/qemu/blueswirl.git
Blue Swirl (9):
cpu_loop_exit: avoid using AREG0
sparc: fix coding style of the area to be moved
sparc: move do_interrupt to helper.c
x86: use caller supplied CPUState for interrupt related stuff
m68k: use caller supplied CPUState for interrupt related stuff
cpu-exec: unify do_interrupt call
exec.h: fix coding style and change cpu_has_work to return bool
Move cpu_has_work and cpu_pc_from_tb to cpu.h
Remove exec-all.h include directives
bsd-user/main.c | 2 +-
cpu-all.h | 2 +-
cpu-exec.c | 85 ++++----------
cpus.c | 1 -
disas.c | 1 -
exec-all.h | 3 +-
exec.c | 1 -
gdbstub.c | 2 +-
hw/sh7750.c | 1 -
hw/spapr_hcall.c | 1 -
kvm-stub.c | 2 +-
linux-user/main.c | 3 +-
monitor.c | 2 +-
target-alpha/cpu.h | 22 ++++
target-alpha/exec.h | 21 ----
target-alpha/helper.c | 1 -
target-alpha/op_helper.c | 6 +-
target-alpha/translate.c | 1 -
target-arm/cpu.h | 13 ++
target-arm/exec.h | 13 --
target-arm/helper.c | 1 -
target-arm/op_helper.c | 6 +-
target-arm/translate.c | 1 -
target-cris/cpu.h | 11 ++
target-cris/exec.h | 12 --
target-cris/helper.c | 1 -
target-cris/mmu.c | 1 -
target-cris/op_helper.c | 4 +-
target-cris/translate.c | 1 -
target-i386/cpu.h | 57 +++++++++
target-i386/exec.h | 57 ---------
target-i386/helper.c | 1 -
target-i386/machine.c | 2 +-
target-i386/op_helper.c | 106 ++++++++++++++---
target-i386/translate.c | 1 -
target-lm32/cpu.h | 13 ++
target-lm32/exec.h | 12 --
target-lm32/helper.c | 1 -
target-lm32/op_helper.c | 6 +-
target-lm32/translate.c | 1 -
target-m68k/cpu.h | 15 +++-
target-m68k/exec.h | 12 --
target-m68k/helper.c | 1 -
target-m68k/op_helper.c | 35 +++++-
target-m68k/translate.c | 1 -
target-microblaze/cpu.h | 13 ++
target-microblaze/exec.h | 12 --
target-microblaze/helper.c | 1 -
target-microblaze/mmu.c | 1 -
target-microblaze/op_helper.c | 4 +-
target-microblaze/translate.c | 1 -
target-mips/cpu.h | 24 ++++
target-mips/exec.h | 23 ----
target-mips/helper.c | 1 -
target-mips/machine.c | 2 +-
target-mips/op_helper.c | 4 +-
target-mips/translate.c | 1 -
target-ppc/cpu.h | 12 ++
target-ppc/exec.h | 12 --
target-ppc/helper.c | 1 -
target-ppc/op_helper.c | 2 +-
target-ppc/translate.c | 1 -
target-s390x/cpu.h | 11 ++
target-s390x/exec.h | 13 --
target-s390x/helper.c | 1 -
target-s390x/op_helper.c | 12 +-
target-s390x/translate.c | 1 -
target-sh4/cpu.h | 13 ++
target-sh4/exec.h | 12 --
target-sh4/helper.c | 1 -
target-sh4/op_helper.c | 10 +-
target-sh4/translate.c | 1 -
target-sparc/cpu.h | 18 +++
target-sparc/exec.h | 16 ---
target-sparc/helper.c | 243 +++++++++++++++++++++++++++++++++++++++-
target-sparc/machine.c | 2 +-
target-sparc/op_helper.c | 253 ++--------------------------------------
target-sparc/translate.c | 1 -
target-unicore32/cpu.h | 6 +
target-unicore32/exec.h | 7 -
target-unicore32/helper.c | 1 -
target-unicore32/op_helper.c | 2 +-
target-unicore32/translate.c | 1 -
tcg/tcg.c | 1 -
translate-all.c | 1 -
user-exec.c | 11 +-
xen-mapcache-stub.c | 2 +-
87 files changed, 670 insertions(+), 627 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH 0/9] AREG0 patches
2011-06-19 20:57 [Qemu-devel] [PATCH 0/9] AREG0 patches Blue Swirl
@ 2011-06-19 21:55 ` Andreas Färber
2011-06-20 11:27 ` Kevin Wolf
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Färber @ 2011-06-19 21:55 UTC (permalink / raw)
To: Blue Swirl; +Cc: qemu-devel
Am 19.06.2011 um 22:57 schrieb Blue Swirl:
> These and the stack frame patches can be found in
> git://repo.or.cz/qemu/blueswirl.git
>
> Blue Swirl (9):
> cpu_loop_exit: avoid using AREG0
> sparc: fix coding style of the area to be moved
> sparc: move do_interrupt to helper.c
> x86: use caller supplied CPUState for interrupt related stuff
> m68k: use caller supplied CPUState for interrupt related stuff
> cpu-exec: unify do_interrupt call
> exec.h: fix coding style and change cpu_has_work to return bool
> Move cpu_has_work and cpu_pc_from_tb to cpu.h
> Remove exec-all.h include directives
This is getting rather unhandy with two series...
Could you please check that chainreplyto = true under [sendemail]? I
have no other related options set, and it used to work via Gmail last
time I tried.
Thanks,
Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH 0/9] AREG0 patches
2011-06-19 21:55 ` Andreas Färber
@ 2011-06-20 11:27 ` Kevin Wolf
0 siblings, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2011-06-20 11:27 UTC (permalink / raw)
To: Andreas Färber; +Cc: Blue Swirl, qemu-devel
Am 19.06.2011 23:55, schrieb Andreas Färber:
> Am 19.06.2011 um 22:57 schrieb Blue Swirl:
>
>> These and the stack frame patches can be found in
>> git://repo.or.cz/qemu/blueswirl.git
>>
>> Blue Swirl (9):
>> cpu_loop_exit: avoid using AREG0
>> sparc: fix coding style of the area to be moved
>> sparc: move do_interrupt to helper.c
>> x86: use caller supplied CPUState for interrupt related stuff
>> m68k: use caller supplied CPUState for interrupt related stuff
>> cpu-exec: unify do_interrupt call
>> exec.h: fix coding style and change cpu_has_work to return bool
>> Move cpu_has_work and cpu_pc_from_tb to cpu.h
>> Remove exec-all.h include directives
>
> This is getting rather unhandy with two series...
>
> Could you please check that chainreplyto = true under [sendemail]? I
> have no other related options set, and it used to work via Gmail last
> time I tried.
Actually, chainreply = false is what you want, so that all patches are
replies to patch 0 instead of patch n-1.
Of course, you need to send off the whole series with only a single
git-send-email invocation for it to work, like git send-email 00*.patch
Kevin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-06-20 11:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-19 20:57 [Qemu-devel] [PATCH 0/9] AREG0 patches Blue Swirl
2011-06-19 21:55 ` Andreas Färber
2011-06-20 11:27 ` Kevin Wolf
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).