patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] net/ixgbe: enable Pf host new mbox version
@ 2019-08-02  7:24 Wei Zhao
  2019-08-21  6:43 ` [dpdk-stable] [dpdk-dev] " Ye Xiaolong
  2019-08-28  8:16 ` [dpdk-stable] [PATCH v2] " Wei Zhao
  0 siblings, 2 replies; 5+ messages in thread
From: Wei Zhao @ 2019-08-02  7:24 UTC (permalink / raw)
  To: dev; +Cc: stable, qi.z.zhang, Wei Zhao

a new mail box version of ixgbe_mbox_api_13 need to enable for pf
host, in order that it can communicate with vf for queue number.

Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
---
 drivers/net/ixgbe/ixgbe_pf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ixgbe/ixgbe_pf.c b/drivers/net/ixgbe/ixgbe_pf.c
index fafff6b..85e5ec2 100644
--- a/drivers/net/ixgbe/ixgbe_pf.c
+++ b/drivers/net/ixgbe/ixgbe_pf.c
@@ -616,6 +616,7 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
 	case ixgbe_mbox_api_20:
 	case ixgbe_mbox_api_11:
 	case ixgbe_mbox_api_12:
+	case ixgbe_mbox_api_13:
 		break;
 	default:
 		return -1;
-- 
2.7.5


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH] net/ixgbe: enable Pf host new mbox version
  2019-08-02  7:24 [dpdk-stable] [PATCH] net/ixgbe: enable Pf host new mbox version Wei Zhao
@ 2019-08-21  6:43 ` Ye Xiaolong
  2019-08-28  8:15   ` Zhao1, Wei
  2019-08-28  8:16 ` [dpdk-stable] [PATCH v2] " Wei Zhao
  1 sibling, 1 reply; 5+ messages in thread
From: Ye Xiaolong @ 2019-08-21  6:43 UTC (permalink / raw)
  To: Wei Zhao; +Cc: dev, stable, qi.z.zhang

Hi, wei

Is it a fix patch?

Thanks,
Xiaolong

On 08/02, Wei Zhao wrote:
>a new mail box version of ixgbe_mbox_api_13 need to enable for pf
>host, in order that it can communicate with vf for queue number.
>
>Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
>---
> drivers/net/ixgbe/ixgbe_pf.c | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/drivers/net/ixgbe/ixgbe_pf.c b/drivers/net/ixgbe/ixgbe_pf.c
>index fafff6b..85e5ec2 100644
>--- a/drivers/net/ixgbe/ixgbe_pf.c
>+++ b/drivers/net/ixgbe/ixgbe_pf.c
>@@ -616,6 +616,7 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
> 	case ixgbe_mbox_api_20:
> 	case ixgbe_mbox_api_11:
> 	case ixgbe_mbox_api_12:
>+	case ixgbe_mbox_api_13:
> 		break;
> 	default:
> 		return -1;
>-- 
>2.7.5
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-stable] [dpdk-dev] [PATCH] net/ixgbe: enable Pf host new mbox version
  2019-08-21  6:43 ` [dpdk-stable] [dpdk-dev] " Ye Xiaolong
@ 2019-08-28  8:15   ` Zhao1, Wei
  0 siblings, 0 replies; 5+ messages in thread
From: Zhao1, Wei @ 2019-08-28  8:15 UTC (permalink / raw)
  To: Ye, Xiaolong; +Cc: dev, stable, Zhang, Qi Z

Hi, Xiaolong
   It is used for enable a new mbox API TYPE 

> -----Original Message-----
> From: Ye, Xiaolong
> Sent: Wednesday, August 21, 2019 2:43 PM
> To: Zhao1, Wei <wei.zhao1@intel.com>
> Cc: dev@dpdk.org; stable@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com>
> Subject: Re: [dpdk-dev] [PATCH] net/ixgbe: enable Pf host new mbox version
> 
> Hi, wei
> 
> Is it a fix patch?
> 
> Thanks,
> Xiaolong
> 
> On 08/02, Wei Zhao wrote:
> >a new mail box version of ixgbe_mbox_api_13 need to enable for pf host,
> >in order that it can communicate with vf for queue number.
> >
> >Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
> >---
> > drivers/net/ixgbe/ixgbe_pf.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> >diff --git a/drivers/net/ixgbe/ixgbe_pf.c
> >b/drivers/net/ixgbe/ixgbe_pf.c index fafff6b..85e5ec2 100644
> >--- a/drivers/net/ixgbe/ixgbe_pf.c
> >+++ b/drivers/net/ixgbe/ixgbe_pf.c
> >@@ -616,6 +616,7 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev,
> uint32_t vf, uint32_t *msgbuf)
> > 	case ixgbe_mbox_api_20:
> > 	case ixgbe_mbox_api_11:
> > 	case ixgbe_mbox_api_12:
> >+	case ixgbe_mbox_api_13:
> > 		break;
> > 	default:
> > 		return -1;
> >--
> >2.7.5
> >

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [dpdk-stable] [PATCH v2] net/ixgbe: enable Pf host new mbox version
  2019-08-02  7:24 [dpdk-stable] [PATCH] net/ixgbe: enable Pf host new mbox version Wei Zhao
  2019-08-21  6:43 ` [dpdk-stable] [dpdk-dev] " Ye Xiaolong
@ 2019-08-28  8:16 ` Wei Zhao
  2019-09-05 10:41   ` Ye Xiaolong
  1 sibling, 1 reply; 5+ messages in thread
From: Wei Zhao @ 2019-08-28  8:16 UTC (permalink / raw)
  To: dev; +Cc: stable, qi.z.zhang, xiaolong.ye, Wei Zhao

a new mail box version of ixgbe_mbox_api_13 need to enable for pf
host, in order that it can communicate with vf for queue number.

Fixes: 46b14c231106 ("ixgbe: get VF queue number")
Cc: stable@dpdk.org

Signed-off-by: Wei Zhao <wei.zhao1@intel.com>

---

v2:
-add more commit log info
---
 drivers/net/ixgbe/ixgbe_pf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ixgbe/ixgbe_pf.c b/drivers/net/ixgbe/ixgbe_pf.c
index c88d56e..be729ba 100644
--- a/drivers/net/ixgbe/ixgbe_pf.c
+++ b/drivers/net/ixgbe/ixgbe_pf.c
@@ -618,6 +618,7 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
 	case ixgbe_mbox_api_20:
 	case ixgbe_mbox_api_11:
 	case ixgbe_mbox_api_12:
+	case ixgbe_mbox_api_13:
 		break;
 	default:
 		return -1;
-- 
2.7.5


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-stable] [PATCH v2] net/ixgbe: enable Pf host new mbox version
  2019-08-28  8:16 ` [dpdk-stable] [PATCH v2] " Wei Zhao
@ 2019-09-05 10:41   ` Ye Xiaolong
  0 siblings, 0 replies; 5+ messages in thread
From: Ye Xiaolong @ 2019-09-05 10:41 UTC (permalink / raw)
  To: Wei Zhao; +Cc: dev, stable, qi.z.zhang

On 08/28, Wei Zhao wrote:
>a new mail box version of ixgbe_mbox_api_13 need to enable for pf
>host, in order that it can communicate with vf for queue number.
>
>Fixes: 46b14c231106 ("ixgbe: get VF queue number")
>Cc: stable@dpdk.org
>
>Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
>
>---
>
>v2:
>-add more commit log info
>---
> drivers/net/ixgbe/ixgbe_pf.c | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/drivers/net/ixgbe/ixgbe_pf.c b/drivers/net/ixgbe/ixgbe_pf.c
>index c88d56e..be729ba 100644
>--- a/drivers/net/ixgbe/ixgbe_pf.c
>+++ b/drivers/net/ixgbe/ixgbe_pf.c
>@@ -618,6 +618,7 @@ ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
> 	case ixgbe_mbox_api_20:
> 	case ixgbe_mbox_api_11:
> 	case ixgbe_mbox_api_12:
>+	case ixgbe_mbox_api_13:
> 		break;
> 	default:
> 		return -1;
>-- 
>2.7.5
>

Acked-by: Xiaolong Ye <xiaolong.ye@intel.com>

Applied to dpdk-next-net-intel.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-09-05 10:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-02  7:24 [dpdk-stable] [PATCH] net/ixgbe: enable Pf host new mbox version Wei Zhao
2019-08-21  6:43 ` [dpdk-stable] [dpdk-dev] " Ye Xiaolong
2019-08-28  8:15   ` Zhao1, Wei
2019-08-28  8:16 ` [dpdk-stable] [PATCH v2] " Wei Zhao
2019-09-05 10:41   ` Ye Xiaolong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).