Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-12-10 Thread Daniel P . Berrangé
On Thu, Dec 10, 2020 at 01:42:51PM +, Daniel P. Berrangé wrote: > On Thu, Dec 10, 2020 at 05:17:05PM +0400, Marc-André Lureau wrote: > > Hi > > > > On Thu, Nov 26, 2020 at 4:23 PM Peter Maydell > > wrote: > > > > > On Thu, 26 Nov 2020 at 12:06, Daniel P. Berrangé > > > wrote: > > > > > > >

Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-12-10 Thread Daniel P . Berrangé
On Thu, Dec 10, 2020 at 05:17:05PM +0400, Marc-André Lureau wrote: > Hi > > On Thu, Nov 26, 2020 at 4:23 PM Peter Maydell > wrote: > > > On Thu, 26 Nov 2020 at 12:06, Daniel P. Berrangé > > wrote: > > > > > > On Thu, Nov 26, 2020 at 11:49:28AM +, Peter Maydell wrote: > > > > On Thu, 26 Nov

Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-12-10 Thread Marc-André Lureau
Hi On Thu, Nov 26, 2020 at 4:23 PM Peter Maydell wrote: > On Thu, 26 Nov 2020 at 12:06, Daniel P. Berrangé > wrote: > > > > On Thu, Nov 26, 2020 at 11:49:28AM +, Peter Maydell wrote: > > > On Thu, 26 Nov 2020 at 11:29, wrote: > > > > > > > > From: Philippe Mathieu-Daudé > > > > > > > > Si

Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-11-26 Thread Peter Maydell
On Thu, 26 Nov 2020 at 12:06, Daniel P. Berrangé wrote: > > On Thu, Nov 26, 2020 at 11:49:28AM +, Peter Maydell wrote: > > On Thu, 26 Nov 2020 at 11:29, wrote: > > > > > > From: Philippe Mathieu-Daudé > > > > > > Since commit efc6c070aca ("configure: Add a test for the > > > minimum compiler

Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-11-26 Thread Daniel P . Berrangé
On Thu, Nov 26, 2020 at 11:49:28AM +, Peter Maydell wrote: > On Thu, 26 Nov 2020 at 11:29, wrote: > > > > From: Philippe Mathieu-Daudé > > > > Since commit efc6c070aca ("configure: Add a test for the > > minimum compiler version") the minimum compiler version > > required for GCC is 4.8, whic

Re: [PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-11-26 Thread Peter Maydell
On Thu, 26 Nov 2020 at 11:29, wrote: > > From: Philippe Mathieu-Daudé > > Since commit efc6c070aca ("configure: Add a test for the > minimum compiler version") the minimum compiler version > required for GCC is 4.8, which has the GCC BZ#36793 bug fixed. > > We can safely remove the special case i

[PATCH v2 02/13] qemu/atomic: Drop special case for unsupported compiler

2020-11-26 Thread marcandre . lureau
From: Philippe Mathieu-Daudé Since commit efc6c070aca ("configure: Add a test for the minimum compiler version") the minimum compiler version required for GCC is 4.8, which has the GCC BZ#36793 bug fixed. We can safely remove the special case introduced in commit a281ebc11a6 ("virtio: add missin