Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: add an API for get queue status

2019-09-12 Thread Noa Ezra
your suggestion will solve the problem of getting queue state for requested queue directly in the application. Thanks, Noa. > -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Friday, August 30, 2019 11:56 AM > To: Noa Ezra ; tiwei

Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: fix redundant queue state event

2019-06-26 Thread Noa Ezra
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Wednesday, June 26, 2019 10:01 AM > To: Noa Ezra > Cc: Matan Azrad ; dev@dpdk.org; sta...@dpdk.org > Subject: Re: [Suspected-Phishing][PATCH] net/vhost: fix redundant q

Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: fix redundant queue state event

2019-06-25 Thread Noa Ezra
Hi, > -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Tuesday, June 25, 2019 11:24 AM > To: Noa Ezra > Cc: Matan Azrad ; dev@dpdk.org; sta...@dpdk.org > Subject: Re: [Suspected-Phishing][PATCH] net/vhost: fix redundant q

Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: fix redundant queue state event

2019-06-25 Thread Noa Ezra
Hi, What do you think about this patch? Thanks, Noa. > -Original Message- > From: Noa Ezra [mailto:n...@mellanox.com] > Sent: Wednesday, June 19, 2019 9:16 AM > To: maxime.coque...@redhat.com > Cc: Matan Azrad ; dev@dpdk.org; Noa Ezra > ; sta...@dpdk.org > Subject

Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: add an API for get queue status

2019-06-25 Thread Noa Ezra
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Monday, June 24, 2019 7:47 PM > To: Noa Ezra ; tiwei@intel.com; > zhihong.w...@intel.com > Cc: Matan Azrad ; dev@dpdk.org > Subject: Re: [Suspected-Phishing][PATCH] net/vhos

Re: [dpdk-dev] [Suspected-Phishing][PATCH] net/vhost: add an API for get queue status

2019-06-24 Thread Noa Ezra
Hi, What do you say about this patch? Thanks, Noa. > -Original Message- > From: Noa Ezra [mailto:n...@mellanox.com] > Sent: Wednesday, June 19, 2019 9:15 AM > To: maxime.coque...@redhat.com > Cc: Matan Azrad ; dev@dpdk.org; Noa Ezra > > Subject: [Suspected-Phish

[dpdk-dev] [PATCH v2] net/vhost: fix redundant queue state event

2019-06-19 Thread Noa Ezra
river on top of the library") Cc: sta...@dpdk.org Signed-off-by: Noa Ezra Reviewed-by: Matan Azrad --- v2 remove checkpatch warnings --- drivers/net/vhost/rte_eth_vhost.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_e

Re: [dpdk-dev] [PATCH 2/2] net/vhost: support mrg-rxbuf disabling

2019-06-19 Thread Noa Ezra
Hi Maxime, Thanks for your comment, please see below. > -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Wednesday, June 19, 2019 12:10 PM > To: Noa Ezra > Cc: Matan Azrad ; dev@dpdk.org > Subject: Re: [PATCH 2/2] net/vhost:

[dpdk-dev] [PATCH v2] vhost: fix add a missing include

2019-06-19 Thread Noa Ezra
Add a missing include with the defines for vhost-user driver features. Fixes: 5fbb3941da9f ("vhost: introduce driver features related APIs") Cc: sta...@dpdk.org Signed-off-by: Noa Ezra Reviewed-by: Maxime Coquelin Reviewed-by: Matan Azrad --- v2 remove checkpatch warning

[dpdk-dev] [PATCH] net/vhost: fix redundant queue state event

2019-06-18 Thread Noa Ezra
In some situations, when a virtual machine is starting, vring_state_changed can be called while there was no change in the queue state. This fix makes sure that there was really a change in the queue state before calling the callback for EVENT_QUEUE_STATE. Fixes: ee584e9710b9 ("vhost: add driver o

[dpdk-dev] [PATCH] net/vhost: add an API for get queue status

2019-06-18 Thread Noa Ezra
Add an API that returns queue status for requested queue in the port. The queue's status can be changed before the user has signed for the queue state event interrupt. In this case the user can't know the current queue's status. This API returns the current status. Signed-o

[dpdk-dev] [PATCH 0/2] support tso and mrg-rxbuf disabling

2019-06-18 Thread Noa Ezra
Add support for disabling TSO and mrg-rxbuf in vhost. Noa Ezra (2): net/vhost: support TSO disabling net/vhost: support mrg-rxbuf disabling doc/guides/nics/vhost.rst | 10 + drivers/net/vhost/rte_eth_vhost.c | 45 --- 2 files changed, 52

[dpdk-dev] [PATCH 1/2] net/vhost: support TSO disabling

2019-06-18 Thread Noa Ezra
TSO (TCP Segmentation Offload) is enabled by default on vhost. Add the ability to disable TSO on vhost. The user should also disable the feature on the virtual machine's xml. Signed-off-by: Noa Ezra Reviewed-by: Matan Azrad --- doc/guides/nics/vhost.rst | 5 + drivers/net/

[dpdk-dev] [PATCH 2/2] net/vhost: support mrg-rxbuf disabling

2019-06-18 Thread Noa Ezra
mrg_rxbuf=off in virtual machine's xml. Signed-off-by: Noa Ezra Reviewed-by: Matan Azrad --- doc/guides/nics/vhost.rst | 5 + drivers/net/vhost/rte_eth_vhost.c | 17 - 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/vhost.rst

[dpdk-dev] [PATCH] vhost: fix add a missing include

2019-06-18 Thread Noa Ezra
Add a missing include with the defines for vhost-user driver features. Fixes: 5fbb3941da9f ("vhost: introduce driver features related APIs") Cc: sta...@dpdk.org Signed-off-by: Noa Ezra Reviewed-by: Maxime Coquelin Reviewed-by: Matan Azrad --- lib/librte_vhost/rte_vhost.h | 1

Re: [dpdk-dev] [PATCH v1 1/5] vhost: fix add a missing include

2019-06-17 Thread Noa Ezra
Hi, Does anyone else want to review this patch? Thanks, Noa. -Original Message- From: Matan Azrad Sent: Sunday, May 26, 2019 1:23 PM To: Noa Ezra ; dev@dpdk.org; maxime.coque...@redhat.com Cc: Noa Ezra ; sta...@dpdk.org Subject: RE: [PATCH v1 1/5] vhost: fix add a missing include

[dpdk-dev] [PATCH v2] examples/ip_fragmentation: support big packets

2019-01-13 Thread Noa Ezra
, which is the default MTU size. In addition, scatter-gather need to be enabled in order to receive frames bigger than mbuf size. Signed-off-by: Noa Ezra --- v2: move set_mtu() to be done after dev_configure(). examples/ip_fragmentation/main.c | 11 +++ 1 file changed, 11 insertions

[dpdk-dev] [PATCH] examples/ip_fragmentation: support big packets

2018-12-26 Thread Noa Ezra
, which is the default MTU size. In addition, scatter-gather need to be enabled in order to receive frames bigger than mbuf size. Cc: sta...@dpdk.org Signed-off-by: Noa Ezra --- examples/ip_fragmentation/main.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/examples

Re: [dpdk-dev] [PATCH] examples/ip_fragmentation: support bigger packets

2018-12-20 Thread Noa Ezra
mbuf size. We can add the configuration and avoid changing the mbuf size. What do you think about this solution? Thanks, Noa. -Original Message- From: Ananyev, Konstantin [mailto:konstantin.anan...@intel.com] Sent: Thursday, December 20, 2018 2:18 AM To: Noa Ezra Cc: dev@dpdk.org Su

[dpdk-dev] [PATCH] examples/ip_fragmentation: support bigger packets

2018-12-13 Thread Noa Ezra
meter, the NIC could not receive packets larger than 1500 bytes, which is the default MTU size. The mbuf is the memory buffer that contains the packet. Before adding mbuf parameter, the DPDK application could not receive packets larger than 2KB, which is the default mbuf size. Signed-off-by: Noa