Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-12-17 Thread Alexey Kardashevskiy
On 18/12/2019 09:19, Felipe Franciosi wrote: > Hi Alexey, > > I don't know how, but somehow I didn't receive your reply: > https://lists.gnu.org/archive/html/qemu-devel/2019-12/msg02127.html > > (I was about to follow up, then I decided to look at the archives to > make sure your response

Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-12-17 Thread Felipe Franciosi
Hi Alexey, I don't know how, but somehow I didn't receive your reply: https://lists.gnu.org/archive/html/qemu-devel/2019-12/msg02127.html (I was about to follow up, then I decided to look at the archives to make sure your response didn't get lost in my client somehow...) Still not sure of what

Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-12-11 Thread Alexey Kardashevskiy
On 10/12/2019 23:04, Felipe Franciosi wrote: > Hi > >> On Dec 2, 2019, at 6:31 AM, Alexey Kardashevskiy wrote: >> >> >> >> On 30/11/2019 04:46, Felipe Franciosi wrote: >>> Several objects implemented their own uint property getters and setters, >>> despite them being straightforward (without

Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-12-10 Thread Felipe Franciosi
Hi > On Dec 2, 2019, at 6:31 AM, Alexey Kardashevskiy wrote: > > > > On 30/11/2019 04:46, Felipe Franciosi wrote: >> Several objects implemented their own uint property getters and setters, >> despite them being straightforward (without any checks/validations on >> the values themselves) and

Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-12-01 Thread Alexey Kardashevskiy
On 30/11/2019 04:46, Felipe Franciosi wrote: > Several objects implemented their own uint property getters and setters, > despite them being straightforward (without any checks/validations on > the values themselves) and identical across objects. This makes use of > an enhanced API for

Re: [PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-11-29 Thread Marc-André Lureau
On Fri, Nov 29, 2019 at 9:46 PM Felipe Franciosi wrote: > > Several objects implemented their own uint property getters and setters, > despite them being straightforward (without any checks/validations on > the values themselves) and identical across objects. This makes use of > an enhanced API

[PATCH v3 4/4] qom/object: Use common get/set uint helpers

2019-11-29 Thread Felipe Franciosi
Several objects implemented their own uint property getters and setters, despite them being straightforward (without any checks/validations on the values themselves) and identical across objects. This makes use of an enhanced API for object_property_add_uintXX_ptr() which offers default setters.