RE: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Ali Alnubani
> -Original Message- > From: Thinh Tran > Sent: Wednesday, July 13, 2022 10:50 PM > To: Ali Alnubani ; NBU-Contact-Thomas Monjalon > (EXTERNAL) > Cc: dev@dpdk.org; David Christensen > Subject: Re: [PATCH] config: set pkgconfig for ppc64le > > Hi, > > On 7/13/2022 2:39 AM, Ali Alnubani

RE: [EXT] Re: [PATCH 1/2] doc: add enqueue depth for new event type

2022-07-13 Thread Pavan Nikhilesh Bhagavatula
> -Original Message- > From: Mattias Rönnblom > Sent: Wednesday, July 13, 2022 5:45 PM > To: Pavan Nikhilesh Bhagavatula ; Thomas > Monjalon > Cc: Jerin Jacob Kollanukkaran ; Ray Kinsella > ; dev@dpdk.org; timothy.mcdan...@intel.com; Hemant > Agrawal ; sachin.sax...@oss.nxp.com; > lian.

RE: [PATCH] doc: announce header split deprecation

2022-07-13 Thread Ding, Xuan
Hi, > -Original Message- > From: Thomas Monjalon > Sent: 2022年7月13日 17:50 > To: Ding, Xuan > Cc: andrew.rybche...@oktetlabs.ru; m...@ashroe.eu; dev@dpdk.org; > step...@networkplumber.org; m...@smartsharesystems.com; dev@dpdk.org > Subject: Re: [PATCH] doc: announce header split deprecati

[PATCH] examples/vhost: fix use after free

2022-07-13 Thread Wenwu Ma
In async_enqueue_pkts(), the failed pkts will be freed before return, but, the failed pkts may be retried later, it will cause use after free. So, we free the failed pkts after retry. Fixes: 1907ce4baec3 ("examples/vhost: fix retry logic on Rx path") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma -

Re: [PATCH v4] doc: announce KNI deprecation

2022-07-13 Thread Thomas Monjalon
13/07/2022 18:10, Thomas Monjalon: > From: Ferruh Yigit > > Announce the deprecation plan for KNI kernel module, library and example. > > Signed-off-by: Ferruh Yigit > Signed-off-by: Thomas Monjalon > --- > Squashed and updated 2 deprecations: > https://patches.dpdk.org/project/dpdk/patch/2021

Re: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Thinh Tran
Hi, On 7/13/2022 2:39 AM, Ali Alnubani wrote: -Original Message- From: Thomas Monjalon Sent: Monday, July 11, 2022 11:11 PM To: Ali Alnubani Cc: dev@dpdk.org; David Christensen Subject: Re: [PATCH] config: set pkgconfig for ppc64le + PPC maintainer 07/07/2022 13:41, Ali Alnubani: M

Re: [RFC PATCH v1] net/i40e: put mempool cache out of API

2022-07-13 Thread Konstantin Ananyev
11/07/2022 07:19, Honnappa Nagarahalli пишет: Refer to "i40e_tx_free_bufs_avx512", this patch puts mempool cache out of API to free buffers directly. There are two changes different with previous version: 1. change txep from "i40e_entry" to "i40e_vec_entry" 2. put cache out of "mempool_bulk"

[PATCH] sw_evdev: report correct device name

2022-07-13 Thread Stephen Hemminger
The software eventdev PMD reports todo-fix-name as the device name. Looks like simple fix. Fixes: c66baa68e453 ("event/sw: add dump function for easier debugging") Signed-off-by: Stephen Hemminger --- drivers/event/sw/sw_evdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --g

Re: [PATCH] doc: add deprecation notice for kni example

2022-07-13 Thread Thomas Monjalon
13/07/2022 11:11, Thomas Monjalon: > 13/07/2022 10:14, Bruce Richardson: > > On Tue, Jul 12, 2022 at 04:17:31PM +0200, Thomas Monjalon wrote: > > > 30/06/2022 18:50, Bruce Richardson: > > > > +* examples/kni: The ``kni`` kernel module and library are not > > > > recommended for use by new applicat

[PATCH v4] doc: announce KNI deprecation

2022-07-13 Thread Thomas Monjalon
From: Ferruh Yigit Announce the deprecation plan for KNI kernel module, library and example. Signed-off-by: Ferruh Yigit Signed-off-by: Thomas Monjalon --- Squashed and updated 2 deprecations: https://patches.dpdk.org/project/dpdk/patch/20211124171609.3101896-2-ferruh.yi...@intel.com/ https://

[PATCH] doc: announce behavior change for device NUMA node field

2022-07-13 Thread Olivier Matz
The dev->device.numa_node field is set by the bus driver for each device it manages to indicate on which NUMA node this device lies. When this information is unknown, the assigned value is not consistent across the bus drivers. In v22.11, the value will be set to -1 in this case. Link: https://p

[PATCH] app/test-eventdev: remove unnecessary memset

2022-07-13 Thread Stephen Hemminger
The function rte_event_dev_info_get already zeros the info structure. Therefore the test code doesn't need to do it. Signed-off-by: Stephen Hemminger --- app/test-eventdev/test_order_common.c | 1 - app/test-eventdev/test_perf_atq.c | 1 - app/test-eventdev/test_perf_queue.c | 1 - 3 files

[PATCH] test/ipsec: fix invalid crypto device failing

2022-07-13 Thread jspewock
From: Jeremy Spewock ipsec_autotest is now skipped if no compatible crypto devices are found. Fixes issue where if at least one crypto device was found but no compatible crypto devices for the ipsec_autotest test case are present the case would fail with no error message. Now, when this situatio

config files profile.cfg in examples/qos_sched

2022-07-13 Thread Theo MARGUERET
Hello , I worked on the qos_sched application and I think, there may be an error in the config file. It seems that the allocation of the pipe profile mapping : - pipe 0-4095 = 0 ; These pipes are configured with pipe profile 0 is not in the right place. I think it should be in the subport con

Re: [PATCH v2] doc: announce transition to vDPA device name function

2022-07-13 Thread Thomas Monjalon
13/07/2022 15:26, David Marchand: > On Tue, Jul 12, 2022 at 3:36 PM Thomas Monjalon wrote: > > > > There is a layer violation in the vDPA API for getting the device name. > > Instead of providing the name at vDPA level, > > a function returns the low-level device object. > > Exposing a rte_device

[PATCH v2 3/3] l3fwd-power: add option to call uncore API

2022-07-13 Thread Tadhg Kearney
Add option for setting uncore frequency min/max/index, through uncore api. This will be set for each package and die on the SKU. On exit, uncore frequency will be reverted back to previous frequency. Signed-off-by: Tadhg Kearney --- .../sample_app_ug/l3_forward_power_man.rst| 28 +++ exampl

[PATCH v2 2/3] test/power: add unit tests for uncore API

2022-07-13 Thread Tadhg Kearney
Add basic unit tests covering all seven uncore api's. Signed-off-by: Tadhg Kearney --- app/test/meson.build | 2 + app/test/test_power_uncore.c | 245 +++ 2 files changed, 247 insertions(+) create mode 100644 app/test/test_power_uncore.c diff --git a/a

[PATCH v2 1/3] power: add uncore API to power library

2022-07-13 Thread Tadhg Kearney
Add api to allow uncore frequency adjustment. This is done through manipulating related sysfs entries to adjust the min/max uncore values. Seven api's are being added that are all public and experimental. Signed-off-by: Tadhg Kearney --- config/x86/meson.build | 2 + doc/guides/pr

[PATCH v2 0/3] add uncore api to be called through l3fwd-power

2022-07-13 Thread Tadhg Kearney
This is targeting 22.11 and aims to add an API to DPDK to allow uncore frequency adjustment. This will be called through the l3fwd-power app, and gives the ability to set the min, max and specific frequency index that you want the uncore to be at. Signed-off-by: Tadhg Kearney --- v2: Fix compi

Re: [PATCH v2] doc: announce transition to vDPA device name function

2022-07-13 Thread David Marchand
On Tue, Jul 12, 2022 at 3:36 PM Thomas Monjalon wrote: > > There is a layer violation in the vDPA API for getting the device name. > Instead of providing the name at vDPA level, > a function returns the low-level device object. Exposing a rte_device (as an opaque pointer) in upper device classes

[dpdk-dev] [PATCH v1] ethdev: support congestion management

2022-07-13 Thread jerinj
From: Jerin Jacob NIC HW controllers often come with congestion management support on various HW objects such as Rx queue depth or mempool queue depth. Also, it can support various modes of operation such as RED (Random early discard), WRED etc on those HW objects. This patch adds a framework t

RE: [PATCH v2] doc: announce transition to vDPA device name function

2022-07-13 Thread Matan Azrad
From: Thomas Monjalon > There is a layer violation in the vDPA API for getting the device name. > Instead of providing the name at vDPA level, a function returns the low-level > device object. > The plan is to introduce a new function in 22.11, promote in 23.07, and remove > rte_vdpa_get_rte_de

Re: [dpdk-dev] [RFC PATCH] ethdev: support congestion management

2022-07-13 Thread Jerin Jacob
On Tue, May 31, 2022 at 9:39 PM Stephen Hemminger wrote: > > On Mon, 30 May 2022 18:45:26 +0530 > wrote: > > > From: Jerin Jacob > > > > NIC HW controllers often come with congestion management support on > > various HW objects such as Rx queue depth or mempool queue depth. > > > > Also, it can

Re: [dpdk-dev] [RFC PATCH] ethdev: support congestion management

2022-07-13 Thread Jerin Jacob
On Tue, May 31, 2022 at 6:39 AM Min Hu (Connor) wrote: > > Hi, jerinj, HI Min Hu, > > +/** > > + * @warning > > + * @b EXPERIMENTAL: this API may change, or be removed, without prior > > notice > 'API' --> 'structure' Will fix it in v1. Thanks > > + * > > + * A structure used to retrieve in

Re: [EXT] Re: [PATCH 1/2] doc: add enqueue depth for new event type

2022-07-13 Thread Mattias Rönnblom
On 2022-07-13 12:40, Pavan Nikhilesh Bhagavatula wrote: > > >> -Original Message- >> From: Mattias Rönnblom >> Sent: Wednesday, July 13, 2022 2:39 PM >> To: Pavan Nikhilesh Bhagavatula ; Thomas >> Monjalon >> Cc: Jerin Jacob Kollanukkaran ; Ray Kinsella >> ; dev@dpdk.org; timothy.mcdan.

Re: [dpdk-dev] [RFC PATCH] ethdev: support congestion management

2022-07-13 Thread Jerin Jacob
On Tue, May 31, 2022 at 1:13 AM Ajit Khaparde wrote: > > On Mon, May 30, 2022 at 6:16 AM wrote: > > > > From: Jerin Jacob > > > > NIC HW controllers often come with congestion management support on > > various HW objects such as Rx queue depth or mempool queue depth. > > > > Also, it can support

Re: [PATCH v2] doc: announce transition to vDPA device name function

2022-07-13 Thread Maxime Coquelin
On 7/12/22 15:36, Thomas Monjalon wrote: There is a layer violation in the vDPA API for getting the device name. Instead of providing the name at vDPA level, a function returns the low-level device object. The plan is to introduce a new function in 22.11, promote in 23.07, and remove rte_vdpa_

Re: [PATCH] maintainers: update for octeontx_ep driver

2022-07-13 Thread Thomas Monjalon
13/07/2022 10:18, Veerasenareddy Burru: > Remove Nalla Pradeep as co-maintainer of octeontx_ep driver. > Add Sathesh Edara as co-maintainer of octeontx_ep driver. > > Signed-off-by: Veerasenareddy Burru Applied

Re: [PATCH v3 2/2] doc: announce KNI deprecation

2022-07-13 Thread Bruce Richardson
On Wed, Jul 13, 2022 at 12:01:28PM +0200, Thomas Monjalon wrote: > 24/11/2021 18:16, Ferruh Yigit: > > Announce the KNI kernel module move to out of dpdk repo and announce > > long term plan to deprecate the KNI. > > > > Signed-off-by: Ferruh Yigit > > --- a/doc/guides/rel_notes/deprecation.rst >

RE: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Ali Alnubani
> -Original Message- > From: Ali Alnubani > Sent: Wednesday, July 13, 2022 1:14 PM > To: Thomas Monjalon > Cc: dev@dpdk.org; David Christensen > Subject: RE: [PATCH] config: set pkgconfig for ppc64le > > > -Original Message- > > From: Thomas Monjalon > > Sent: Wednesday, July 13

RE: [EXT] Re: [PATCH 1/2] doc: add enqueue depth for new event type

2022-07-13 Thread Pavan Nikhilesh Bhagavatula
> -Original Message- > From: Mattias Rönnblom > Sent: Wednesday, July 13, 2022 2:39 PM > To: Pavan Nikhilesh Bhagavatula ; Thomas > Monjalon > Cc: Jerin Jacob Kollanukkaran ; Ray Kinsella > ; dev@dpdk.org; timothy.mcdan...@intel.com; Hemant > Agrawal ; sachin.sax...@oss.nxp.com; > lian.

RE: [EXT] Re: [PATCH] doc: announce change in event vector structure

2022-07-13 Thread Jayatheerthan, Jay
Acked-by: Jay Jayatheerthan > -Original Message- > From: Pavan Nikhilesh Bhagavatula > Sent: Tuesday, July 12, 2022 11:46 PM > To: Jerin Jacob > Cc: Jerin Jacob Kollanukkaran ; Ray Kinsella > ; dpdk-dev ; McDaniel, Timothy > ; hemant.agra...@nxp.com; > sachin.sax...@oss.nxp.com; matti

RE: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Ali Alnubani
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, July 13, 2022 12:12 PM > To: Ali Alnubani > Cc: dev@dpdk.org; David Christensen > Subject: Re: [PATCH] config: set pkgconfig for ppc64le > > 13/07/2022 09:39, Ali Alnubani: > > > -Original Message- > > > From: Thoma

Re: [dpdk-dev] [PATCH v2] doc: propose correction rte_{bsf, fls} inline functions type use

2022-07-13 Thread Thomas Monjalon
Tyler, there was no progress on this topic during the past year. Please could you send the patch to fix API inconsistencies, so we will merge it in 22.11?

Re: [PATCH v3 2/2] doc: announce KNI deprecation

2022-07-13 Thread Thomas Monjalon
24/11/2021 18:16, Ferruh Yigit: > Announce the KNI kernel module move to out of dpdk repo and announce > long term plan to deprecate the KNI. > > Signed-off-by: Ferruh Yigit > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > +* kni: KNI kernel module will

RE: [PATCH v3] doc: announce change in event queue conf structure

2022-07-13 Thread Pavan Nikhilesh Bhagavatula
> On 2022-07-12 16:05, Jerin Jacob wrote: > > On Sun, May 15, 2022 at 3:56 PM Shijith Thotton > wrote: > >> > >> Structure rte_event_queue_conf will be extended to include fields to > >> support weight and affinity attribute. Once it gets added in DPDK 22.11, > >> eventdev internal op, queue_attr_

Re: [PATCH] doc: announce header split deprecation

2022-07-13 Thread Thomas Monjalon
23/05/2022 16:20, xuan.d...@intel.com: > From: Xuan Ding > > RTE_ETH_RX_OFFLOAD_HEADER_SPLIT offload was introduced some time ago to > substitute bit-field header_split in struct rte_eth_rxmode. It allows > to enable header split offload with the header size controlled using > split_hdr_size in t

Re: [PATCH v2] doc: announce rename of octeontx_ep driver

2022-07-13 Thread Jerin Jacob
On Wed, Jul 13, 2022 at 1:41 PM Veerasenareddy Burru wrote: > > To enable single unified driver to support current OcteonTx and > future Octeon PCI endpoint NICs, octeontx_ep driver will be renamed > to octeon_ep to reflect common driver for all Octeon based > PCI endpoint NICs. > > Signed-off-by:

Re: [PATCH v3] app/testpmd: fix quit testpmd with vfs and pf

2022-07-13 Thread Thomas Monjalon
13/07/2022 09:11, Ke Zhang: > A segmentation fault occurs when testpmd exit. The title talks about testpmd, but the change is in i40e. Please update. > This is due to fetching the device name from PF > , PF is freed firstly and then VF representor > is called later. For info, a comma must follow

Re: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Thomas Monjalon
13/07/2022 09:39, Ali Alnubani: > > -Original Message- > > From: Thomas Monjalon > > Sent: Monday, July 11, 2022 11:11 PM > > To: Ali Alnubani > > Cc: dev@dpdk.org; David Christensen > > Subject: Re: [PATCH] config: set pkgconfig for ppc64le > > > > + PPC maintainer > > > > 07/07/2022

Re: [PATCH] doc: add deprecation notice for kni example

2022-07-13 Thread Thomas Monjalon
13/07/2022 10:14, Bruce Richardson: > On Tue, Jul 12, 2022 at 04:17:31PM +0200, Thomas Monjalon wrote: > > 30/06/2022 18:50, Bruce Richardson: > > > +* examples/kni: The ``kni`` kernel module and library are not > > > recommended for use by new applications - > > > + other technologies such as vi

Re: [EXT] Re: [PATCH] doc: announce name change of stop flush callback

2022-07-13 Thread Mattias Rönnblom
On 2022-07-12 20:12, Pavan Nikhilesh Bhagavatula wrote: > +Cc > timothy.mcdan...@intel.com; > hemant.agra...@nxp.com; > sachin.sax...@oss.nxp.com; > mattias.ronnb...@ericsson.com; > jer...@marvell.com; > lian...@liangbit.com; > peter.mccar...@intel.com; > harry.van.haa...@intel.com; > erik.g.carri.

Re: [EXT] Re: [PATCH 1/2] doc: add enqueue depth for new event type

2022-07-13 Thread Mattias Rönnblom
On 2022-07-12 20:11, Pavan Nikhilesh Bhagavatula wrote: > +Cc > timothy.mcdan...@intel.com; > hemant.agra...@nxp.com; > sachin.sax...@oss.nxp.com; > mattias.ronnb...@ericsson.com; > jer...@marvell.com; > lian...@liangbit.com; > peter.mccar...@intel.com; > harry.van.haa...@intel.com; > erik.g.carri.

Re: [PATCH v3] doc: announce change in event queue conf structure

2022-07-13 Thread Mattias Rönnblom
On 2022-07-12 16:05, Jerin Jacob wrote: > On Sun, May 15, 2022 at 3:56 PM Shijith Thotton wrote: >> >> Structure rte_event_queue_conf will be extended to include fields to >> support weight and affinity attribute. Once it gets added in DPDK 22.11, >> eventdev internal op, queue_attr_get can be rem

RE: [PATCH] vhost: fix missing copy length in batched copies

2022-07-13 Thread Ling, WeiX
> -Original Message- > From: Maxime Coquelin > Sent: Tuesday, July 12, 2022 6:05 PM > To: dev@dpdk.org; Xia, Chenbo ; Jiang, YuX > ; tho...@monjalon.net; > david.march...@redhat.com > Cc: Maxime Coquelin > Subject: [PATCH] vhost: fix missing copy length in batched copies > > This patch f

[PATCH] maintainers: update for octeontx_ep driver

2022-07-13 Thread Veerasenareddy Burru
Remove Nalla Pradeep as co-maintainer of octeontx_ep driver. Add Sathesh Edara as co-maintainer of octeontx_ep driver. Signed-off-by: Veerasenareddy Burru --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index c923712946..32ffdd1a61 10

Re: [PATCH] doc: add deprecation notice for kni example

2022-07-13 Thread Bruce Richardson
On Tue, Jul 12, 2022 at 04:17:31PM +0200, Thomas Monjalon wrote: > 30/06/2022 18:50, Bruce Richardson: > > +* examples/kni: The ``kni`` kernel module and library are not recommended > > for use by new applications - > > + other technologies such as virtio-user are recommended instead. > > + Beca

[PATCH v2] doc: announce rename of octeontx_ep driver

2022-07-13 Thread Veerasenareddy Burru
To enable single unified driver to support current OcteonTx and future Octeon PCI endpoint NICs, octeontx_ep driver will be renamed to octeon_ep to reflect common driver for all Octeon based PCI endpoint NICs. Signed-off-by: Veerasenareddy Burru --- v2 - reworded the announcement as per review co

RE: [PATCH 1/2] doc: announce region based device mapping support

2022-07-13 Thread Sunil Kumar Kori
Regards Sunil Kumar Kori > -Original Message- > From: Xia, Chenbo > Sent: Wednesday, July 13, 2022 12:58 PM > To: Sunil Kumar Kori ; Ray Kinsella > Cc: dev@dpdk.org; David Marchand > Subject: [EXT] RE: [PATCH 1/2] doc: announce region based device mapping > support > > External Email >

RE: [PATCH] config: set pkgconfig for ppc64le

2022-07-13 Thread Ali Alnubani
> -Original Message- > From: Thomas Monjalon > Sent: Monday, July 11, 2022 11:11 PM > To: Ali Alnubani > Cc: dev@dpdk.org; David Christensen > Subject: Re: [PATCH] config: set pkgconfig for ppc64le > > + PPC maintainer > > 07/07/2022 13:41, Ali Alnubani: > > Meson fails to detect the d

RE: [PATCH 1/2] doc: announce region based device mapping support

2022-07-13 Thread Xia, Chenbo
Hi Sunil, > -Original Message- > From: Sunil Kumar Kori > Sent: Wednesday, July 13, 2022 3:04 PM > To: Xia, Chenbo ; Ray Kinsella > Cc: dev@dpdk.org > Subject: RE: [PATCH 1/2] doc: announce region based device mapping support > > Hi Chenbo, > > There are pci devices which has huge BAR

RE: [PATCH 1/2] doc: announce region based device mapping support

2022-07-13 Thread Xia, Chenbo
> -Original Message- > From: David Marchand > Sent: Wednesday, July 13, 2022 3:18 PM > To: Sunil Kumar Kori > Cc: Ray Kinsella ; dev ; Xia, Chenbo > ; Thomas Monjalon > Subject: Re: [PATCH 1/2] doc: announce region based device mapping support > > On Tue, Jun 28, 2022 at 3:56 PM wrote:

[Bug 1048] [dpdk-22.07rc3] i40e_rss_input/flow_query: RSS types is not displayed tests failed

2022-07-13 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1048 liweiyuan (weiyuanx...@intel.com) changed: What|Removed |Added Resolution|--- |FIXED Status|UNCO

[PATCH v3] app/testpmd: fix quit testpmd with vfs and pf

2022-07-13 Thread Ke Zhang
A segmentation fault occurs when testpmd exit. This is due to fetching the device name from PF , PF is freed firstly and then VF representor is called later. This commit fixes the bug by fetching the device name from vf representor not PF. Fixes: e391a7b7f815 ("net/i40e: fix multi-process shared

Re: [PATCH 1/2] doc: announce region based device mapping support

2022-07-13 Thread David Marchand
On Tue, Jun 28, 2022 at 3:56 PM wrote: > > From: Sunil Kumar Kori > > Adding region based device mapping support, which enables pci device > to map only required memory region instead of mapping full BAR. > > Signed-off-by: Sunil Kumar Kori > --- > doc/guides/rel_notes/deprecation.rst | 13

RE: [PATCH 1/2] doc: announce region based device mapping support

2022-07-13 Thread Sunil Kumar Kori
Hi Chenbo, There are pci devices which has huge BAR memory but might not be used completely. Like PCIe device DDR memory is exposed over BAR with 32Gb or so. So in that case user might have a requirement to mmap only areas of its interest. Also avoid wasting of extra memory for each pages when k

RE: [EXT] Re: [PATCH] doc: announce change in event vector structure

2022-07-13 Thread Gujjar, Abhinandan S
> -Original Message- > From: Pavan Nikhilesh Bhagavatula > Sent: Tuesday, July 12, 2022 11:46 PM > To: Jerin Jacob > Cc: Jerin Jacob Kollanukkaran ; Ray Kinsella > ; dpdk-dev ; McDaniel, Timothy > ; hemant.agra...@nxp.com; > sachin.sax...@oss.nxp.com; mattias.ronnblom > ; Jerin Jacob Ko