Re: [Qemu-devel] [PATCH v6 02/23] qapi: Require int64/uint64 implementation

2015-12-03 Thread Markus Armbruster
Eric Blake writes: > On 11/27/2015 05:05 AM, Markus Armbruster wrote: >> Eric Blake writes: >> >>> Now that all visitors supply both type_int64() and type_uint64() >>> callbacks, we can drop the redundant type_int() callback (the >>> public interface visit_type_int() remains, but calls into >>>

Re: [Qemu-devel] [PATCH v6 02/23] qapi: Require int64/uint64 implementation

2015-12-02 Thread Eric Blake
On 11/27/2015 05:05 AM, Markus Armbruster wrote: > Eric Blake writes: > >> Now that all visitors supply both type_int64() and type_uint64() >> callbacks, we can drop the redundant type_int() callback (the >> public interface visit_type_int() remains, but calls into >> type_int64() under the hood)

Re: [Qemu-devel] [PATCH v6 02/23] qapi: Require int64/uint64 implementation

2015-11-27 Thread Markus Armbruster
Eric Blake writes: > Now that all visitors supply both type_int64() and type_uint64() > callbacks, we can drop the redundant type_int() callback (the > public interface visit_type_int() remains, but calls into > type_int64() under the hood). > > Signed-off-by: Eric Blake > > --- > v6: new patch,

[Qemu-devel] [PATCH v6 02/23] qapi: Require int64/uint64 implementation

2015-11-25 Thread Eric Blake
Now that all visitors supply both type_int64() and type_uint64() callbacks, we can drop the redundant type_int() callback (the public interface visit_type_int() remains, but calls into type_int64() under the hood). Signed-off-by: Eric Blake --- v6: new patch, but stems from v5 23/46 --- include