__mm_cmpeq_epi16 returns 0x if the corresponding 16-bit elements are
equal. In original SSE2 implementation for function compare_signatures,
it utilizes _mm_movemask_epi8 to create mask from the MSB of each 8-bit
element, while we should only care about the MSB of lower 8-bit in each
16-bit ele
__mm_cmpeq_epi16 returns 0x if the corresponding 16-bit elements are
equal. In original SSE2 implementation for function compare_signatures,
it utilizes _mm_movemask_epi8 to create mask from the MSB of each 8-bit
element, while we should only care about the MSB of lower 8-bit in each
16-bit ele
On 2023/9/29 1:23, Ferruh Yigit wrote:
> On 8/2/2023 7:23 AM, Dengdui Huang wrote:
>> Add command to flush multicast MAC address
>> Usage:
>> mcast_addr flush :
>> flush multicast MAC address on port_id
>>
>> Signed-off-by: Dengdui Huang
>> ---
>> app/test-pmd/cmdline.c
On 2023/9/28 21:15, Ferruh Yigit wrote:
On 9/28/2023 8:42 AM, Jie Hai wrote:
The DPDK framework reports the queue status, which is stored in
'dev->data->tx_queue_state' and 'dev->data->rx_queue_state'.The
state is currently maintained by the drivers. Users may determine
whether a queue participa
Hi Amit,
On 2023/9/28 19:50, Amit Prakash Shukla wrote:
> This changeset adds support in DMA library to free source DMA buffer by
> hardware. On a supported hardware, application can pass on the mempool
> information as part of vchan config when the DMA transfer direction is
> configured as RTE_DM
Hi Amit,
On 2023/9/28 19:50, Amit Prakash Shukla wrote:
> Add a test case to validate the functionality of drivers' dma
> source buffer offload free. As part of dmadev_autotest, test case
> will be executed only if the driver supports source buffer offload
> free and if the test is exported by env
On Sat, 7 Oct 2023 09:34:33 +0800
Chaoyong He wrote:
> diff --git a/drivers/net/bonding/eth_bond_private.h
> b/drivers/net/bonding/eth_bond_private.h
> index e688894210..1344f8c002 100644
> --- a/drivers/net/bonding/eth_bond_private.h
> +++ b/drivers/net/bonding/eth_bond_private.h
> @@ -186,6 +
> -Original Message-
> From: Zhang, Qi Z
> Sent: Saturday, October 7, 2023 11:48 AM
> To: Singh, Aman Deep ; Zhang, Yuying
>
> Cc: dev@dpdk.org; Dumitrescu, Cristian ;
> or...@nvidia.com; ferruh.yi...@amd.com; Zhang, Qi Z
> Subject: [PATCH v4] app/testpmd: enable cli for programmable
Hi TB,
On 2023/9/19 4:20, Maxime Coquelin wrote:
> Dear DPDK community,
>
> Following topics are planned to be discussed at the next Technical board
> meeting, which will take place on Sept. 20th @3PM UTC:
> 1- Memarea library inclusion
Sorry to miss this meeting.
Could you help rescheduling on
> Chaoyong He wrote:
>
> > diff --git a/drivers/net/bonding/eth_bond_private.h
> b/drivers/net/bonding/eth_bond_private.h
> > index e688894210..1344f8c002 100644
> > --- a/drivers/net/bonding/eth_bond_private.h
> > +++ b/drivers/net/bonding/eth_bond_private.h
> > @@ -186,6 +186,8 @@ struct bond_d
Hi Gowrishankar,
This could create a help function in test, just like:
func() {
RTE_DMA_FOREACH_DEV(i) {
rte_dma_info_get(i, &dev_info);
if (strncmp(dev_info->dev_name, xxx)
...
}
}
If some application (not test) should pick some specific device, I suggest
ad
Hi Gowrishankar,
It was already support in test framework (unit_test_suite), I suggest not
invent.
Could you help refactoring the test_dmadev (use the test framework) ?
PS: could refer test_fbarray.c
Thanks.
On 2023/8/10 19:59, Gowrishankar Muthukrishnan wrote:
> Add status on skipped tests.
>
This patch series try to enhance the bond framework to support the
offload feature better:
* Add new API to make the member port can access some information of the
bond port which belongs.
* Add new API to get the result of whether bond port is created by the
member port.
* Add two command line
From: Long Wu
Bonding PMD does not let member ports know the bonding port's
information, like how many member ports the bonding port has,
what mode the bonding port is in and so on.
Add the notification interface for bonding port to let member
port know it is added to a bonding port and what the
From: Long Wu
After bonding port notification, member port hardware may create the
bonding port. We want to get the result of creatition, so we add this
API to do the getting action.
Signed-off-by: Long Wu
Reviewed-by: James Hershaw
Reviewed-by: Chaoyong He
---
drivers/net/bonding/rte_eth_bo
From: Long Wu
Most of the previous interface comment format does not meet the
current standards and were not uniform.
Modify them to meet current standards.
Signed-off-by: Long Wu
Reviewed-by: James Hershaw
Reviewed-by: Chaoyong He
---
drivers/net/bonding/eth_bond_8023ad_private.h | 52 +++
From: Long Wu
Include the following new arguments for bonding ports:
- "notify_member" to enable/disable member notification.
- "dedicated_queue" to enable/disable dedicated queue.
Add these two arguments in initial argument.
Signed-off-by: Long Wu
Reviewed-by: James Hershaw
Reviewed-by: Chao
From: Long Wu
Several ports may share the same PCI address, like nfp representor.
So we cannot add this type of ports to bonding port by "--vdev"
argument in dpdk-testpmd. But the port's data name is unique between
them, we include an option to add such ports to the bonding port.
After adding th
From: Long Wu
Add API to support checking if the port id is a bonding
port id.
Signed-off-by: Long Wu
Reviewed-by: James Hershaw
Reviewed-by: Chaoyong He
---
drivers/net/bonding/rte_eth_bond.h | 13 +
drivers/net/bonding/rte_eth_bond_api.c | 7 +++
drivers/net/bonding/ve
From: Long Wu
Move the flow code to a new head file to make flow related
code more clean and make the code architecture more reasonable
in the future. There is no functional change, just moving
verbatim code around.
Signed-off-by: Long Wu
Reviewed-by: James Hershaw
Reviewed-by: Chaoyong He
--
From: Long Wu
Add some commands to support bonding port notification in
dpdk-testpmd.
1. We can enable the notification by command:
"set bonding notify_member (port_id) (enable|disable)"
2. If member port hardware try to create the bonding port after
notification we can get the status by comman
This series fix help string and add a new command.
v2->v3
add 'mcast_addr add|remove' to help string and
update the new command description.
v1->v2
update order on help string
Dengdui Huang (2):
app/testpmd: fix help string
app/testpmd: add flush all multicast MAC address command
app/test-
Command help string is missing 'mcast_addr add|remove'.
This patch add it.
Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC
addresses")
Cc: sta...@dpdk.org
Signed-off-by: Dengdui Huang
---
app/test-pmd/cmdline.c | 6 ++
1 file changed, 6 insertions(+)
diff --git
Add command to flush all multicast MAC address
Usage:
mcast_addr flush :
flush all multicast MAC address on port_id
Signed-off-by: Dengdui Huang
---
app/test-pmd/cmdline.c | 43 +
app/test-pmd/config.c | 18 +
app/te
Hi Anatoly,
On 2023/8/12 0:14, Anatoly Burakov wrote:
> Add a flag to indicate that a specific device supports inter-domain
> operations, and add an API for inter-domain copy and fill.
>
> Inter-domain operation is an operation that is very similar to regular
> DMA operation, except either source
Hi Dengdui,
On 2023/10/8 9:56, Dengdui Huang wrote:
> Command help string is missing 'mcast_addr add|remove'.
> This patch add it.
>
> Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC
> addresses")
> Cc: sta...@dpdk.org
>
> Signed-off-by: Dengdui Huang
> ---
> app/te
Hi Chaoyong,
some comments as below.
在 2023/10/8 9:50, Chaoyong He 写道:
From: Long Wu
Bonding PMD does not let member ports know the bonding port's
information, like how many member ports the bonding port has,
what mode the bonding port is in and so on.
Add the notification interface for bon
Hi Dengdui,
On 2023/10/8 9:56, Dengdui Huang wrote:
> Add command to flush all multicast MAC address
> Usage:
> mcast_addr flush :
> flush all multicast MAC address on port_id
>
> Signed-off-by: Dengdui Huang
Acked-by: Chengwen Feng
NSH can be matched using the existed item: RTE_FLOW_ITEM_TYPE_NSH.
NSH fields matching is not supported.
Add support for configuring VXLAN-GPE's next protocol.
The CLI is: vxlan-gpe protocol is .
Add support for matching item NSH. The CLI is: nsh
Add support for HCA attribute query of NSH.
Enh
Add support for configuring VXLAN-GPE's next protocol.
The CLI is: vxlan-gpe protocol is .
Example:
flow create 0 transfer group 1 pattern eth / ipv6 / udp dst is 4790
/ vxlan-gpe protocol is 0x04 / eth / ipv4 / tcp / end
actions port_id id 1 / end
Signed-off-by: Jiawei Wang
Signed-off-by: Haif
Add NSH supporting field in two places:
1. New HCA capability indicating NSH is supported
2. New field in "mlx5_ifc_per_protocol_networking_offload_caps_bits"
structure
Signed-off-by: Haifei Luo
Acked-by: Dariusz Sosnowski
Acked-by: Suanming Mou
---
drivers/common/mlx5/mlx5_devx_cmds.c | 3
Enhance the validation so that configuring vxlan-gpe's next protocol as NSH
is supported.
1. The spec's protocol can have value and nic_mask's protocol is 0xff.
Signed-off-by: Haifei Luo
Acked-by: Dariusz Sosnowski
Acked-by: Suanming Mou
---
drivers/net/mlx5/mlx5_flow.c | 13 ++---
1
Add support for item NSH. The CLI is: nsh
Example:
flow create 0 transfer group 1
pattern eth / ipv6 / udp dst is 4790 /
vxlan-gpe / nsh / eth / ipv4 / tcp / end
actions port_id id 1 / end
Signed-off-by: Haifei Luo
Acked-by: Dariusz Sosnowski
Acked-by: Suanming Mou
---
a
1. Add validation for item NSH.
It will fail if HCA cap for NSH is false.
2. Add item_flags for NSH.
3. For vxlan-gpe if next header is NSH, set next_protocol as NSH.
Signed-off-by: Haifei Luo
Acked-by: Dariusz Sosnowski
Acked-by: Suanming Mou
---
drivers/net/mlx5/mlx5_flow.c| 39 ++
On 2023/10/8 10:47, fengchengwen wrote:
> Hi Dengdui,
>
> On 2023/10/8 9:56, Dengdui Huang wrote:
>> Command help string is missing 'mcast_addr add|remove'.
>> This patch add it.
>>
>> Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC
>> addresses")
>> Cc: sta...@dpdk.
This series fix help string and add a new command.
v3->v4
help string add '\n' at last.
v2->v3
add 'mcast_addr add|remove' to help string and
update the new command description.
v1->v2
update order on help string.
Dengdui Huang (2):
app/testpmd: fix help string
app/testpmd: add flush all mu
Command help string is missing 'mcast_addr add|remove'.
This patch add it.
Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC
addresses")
Cc: sta...@dpdk.org
Signed-off-by: Dengdui Huang
Acked-by: Chengwen Feng
---
app/test-pmd/cmdline.c | 6 ++
1 file changed, 6 i
Add command to flush all multicast MAC address
Usage:
mcast_addr flush :
flush all multicast MAC address on port_id
Signed-off-by: Dengdui Huang
Acked-by: Chengwen Feng
---
app/test-pmd/cmdline.c | 43 +
app/test-pmd/config.c
38 matches
Mail list logo