Re: [PATCH v7 2/5] perf/jevents: Add new structure to pass json fields.

2020-09-04 Thread kajoljain
On 9/3/20 8:24 PM, Namhyung Kim wrote: > Hello, > > On Thu, Sep 3, 2020 at 1:05 AM Kajol Jain wrote: >> >> This patch adds new structure called 'json_event' inside jevents.h > > jevents.c ? Hi Namhyung, Right, I will update it. Thanks, Kajol Jain > > Thanks > Namhyung > >> file to

Re: [PATCH v7 2/5] perf/jevents: Add new structure to pass json fields.

2020-09-04 Thread kajoljain
On 9/2/20 10:35 PM, John Garry wrote: > On 02/09/2020 17:04, Kajol Jain wrote: >> This patch adds new structure called 'json_event' inside jevents.h >> file to improve the callback prototype inside jevent files. >> Initially, whenever user want to add new field, they need to update >> in all fun

Re: [PATCH v7 2/5] perf/jevents: Add new structure to pass json fields.

2020-09-03 Thread Namhyung Kim
Hello, On Thu, Sep 3, 2020 at 1:05 AM Kajol Jain wrote: > > This patch adds new structure called 'json_event' inside jevents.h jevents.c ? Thanks Namhyung > file to improve the callback prototype inside jevent files. > Initially, whenever user want to add new field, they need to update > in al

Re: [PATCH v7 2/5] perf/jevents: Add new structure to pass json fields.

2020-09-02 Thread John Garry
On 02/09/2020 17:04, Kajol Jain wrote: This patch adds new structure called 'json_event' inside jevents.h file to improve the callback prototype inside jevent files. Initially, whenever user want to add new field, they need to update in all function callback which make it more and more complex wi

[PATCH v7 2/5] perf/jevents: Add new structure to pass json fields.

2020-09-02 Thread Kajol Jain
This patch adds new structure called 'json_event' inside jevents.h file to improve the callback prototype inside jevent files. Initially, whenever user want to add new field, they need to update in all function callback which make it more and more complex with increased number of parmeters. With th