Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Alex Bennée
Richard Henderson writes: > On 10/11/2016 10:21 AM, Alex Bennée wrote: >> Is this just using plain git tools or one of the >> porcelain layers? > > Just plain git tools. > > In this case it appears I simply left the centos6-adjusted patch set on the > vm, > without pushing

Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Richard Henderson
On 10/11/2016 10:21 AM, Alex Bennée wrote: Is this just using plain git tools or one of the porcelain layers? Just plain git tools. In this case it appears I simply left the centos6-adjusted patch set on the vm, without pushing them back to github. So at least I don't have to regenerate

Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Alex Bennée
Richard Henderson writes: > On 10/11/2016 01:47 AM, Alex Bennée wrote: >> >> Richard Henderson writes: >> >>> Add all of cmpxchg, op_fetch, fetch_op, and xchg. >>> Handle both endian-ness, and sizes up to 8. >>> Handle expanding non-atomically, when

Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Richard Henderson
On 10/11/2016 01:47 AM, Alex Bennée wrote: Richard Henderson writes: Add all of cmpxchg, op_fetch, fetch_op, and xchg. Handle both endian-ness, and sizes up to 8. Handle expanding non-atomically, when emulating in serial. Signed-off-by: Richard Henderson

Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Alex Bennée
Alex Bennée writes: > Richard Henderson writes: > >> Add all of cmpxchg, op_fetch, fetch_op, and xchg. >> Handle both endian-ness, and sizes up to 8. >> Handle expanding non-atomically, when emulating in serial. >> >> Signed-off-by: Richard Henderson

Re: [Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-11 Thread Alex Bennée
Richard Henderson writes: > Add all of cmpxchg, op_fetch, fetch_op, and xchg. > Handle both endian-ness, and sizes up to 8. > Handle expanding non-atomically, when emulating in serial. > > Signed-off-by: Richard Henderson This still seems to be suffering

[Qemu-devel] [PATCH v5 13/35] tcg: Add atomic helpers

2016-10-09 Thread Richard Henderson
Add all of cmpxchg, op_fetch, fetch_op, and xchg. Handle both endian-ness, and sizes up to 8. Handle expanding non-atomically, when emulating in serial. Signed-off-by: Richard Henderson --- Makefile.objs | 2 +- Makefile.target | 1 + atomic_template.h |