DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] Intel 82571EB PMD support
@ 2014-03-07 10:18 Chetan Bali
  2014-03-08 12:57 ` Chetan Bali
  2014-03-09 14:09 ` Stefan Baranoff
  0 siblings, 2 replies; 7+ messages in thread
From: Chetan Bali @ 2014-03-07 10:18 UTC (permalink / raw)
  To: dev

Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-07 10:18 [dpdk-dev] Intel 82571EB PMD support Chetan Bali
@ 2014-03-08 12:57 ` Chetan Bali
  2014-03-08 16:22   ` Jayakumar, Muthurajan
  2014-03-09 14:09 ` Stefan Baranoff
  1 sibling, 1 reply; 7+ messages in thread
From: Chetan Bali @ 2014-03-08 12:57 UTC (permalink / raw)
  To: dev

Hi,

 anyone faced the same issue before?

Thanks & Regards
Chetan Bali
________________________________________
From: dev [dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: Friday, March 07, 2014 3:48 PM
To: dev@dpdk.org
Subject: [dpdk-dev] Intel 82571EB PMD support

Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-08 12:57 ` Chetan Bali
@ 2014-03-08 16:22   ` Jayakumar, Muthurajan
  2014-03-09  5:58     ` Chetan Bali
  0 siblings, 1 reply; 7+ messages in thread
From: Jayakumar, Muthurajan @ 2014-03-08 16:22 UTC (permalink / raw)
  To: Chetan Bali, dev

Hi Chetan, 

82571EB is supported  - listed in http://dpdk.org/browse/dpdk/tree/lib/librte_eal/common/include/rte_pci_dev_ids.h

Not heard issue before.

RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_COPPER)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_FIBER)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER)


#define E1000_DEV_ID_82571EB_COPPER           0x105E
#define E1000_DEV_ID_82571EB_FIBER            0x105F
#define E1000_DEV_ID_82571EB_SERDES           0x1060
#define E1000_DEV_ID_82571EB_SERDES_DUAL      0x10D9
#define E1000_DEV_ID_82571EB_SERDES_QUAD      0x10DA
#define E1000_DEV_ID_82571EB_QUAD_COPPER      0x10A4

Thanks, 

-----Original Message-----
From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: Saturday, March 08, 2014 4:58 AM
To: dev@dpdk.org
Subject: Re: [dpdk-dev] Intel 82571EB PMD support

Hi,

 anyone faced the same issue before?

Thanks & Regards
Chetan Bali
________________________________________
From: dev [dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: Friday, March 07, 2014 3:48 PM
To: dev@dpdk.org
Subject: [dpdk-dev] Intel 82571EB PMD support

Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-08 16:22   ` Jayakumar, Muthurajan
@ 2014-03-09  5:58     ` Chetan Bali
  0 siblings, 0 replies; 7+ messages in thread
From: Chetan Bali @ 2014-03-09  5:58 UTC (permalink / raw)
  To: Jayakumar, Muthurajan, dev

Hi,
Have checked this file too. It's listed and also init of pmd is fine and working since link is up.

After sending the packets from directly connected interface, we are seeing that rx nic stats are increasing but
We are not seeing descriptor done status ( E1000_RX_STAT_DD ) set hence it is not able to get the packet from rx software ring.

Since the link is up, it should be able to receive the packets. Can anyone help resolve this issue?

Thanks & Regards
Chetan Bali
________________________________________
From: Jayakumar, Muthurajan [muthurajan.jayakumar@intel.com]
Sent: Saturday, March 08, 2014 9:52 PM
To: Chetan Bali; dev@dpdk.org
Subject: RE: Intel 82571EB PMD support

Hi Chetan,

82571EB is supported  - listed in http://dpdk.org/browse/dpdk/tree/lib/librte_eal/common/include/rte_pci_dev_ids.h

Not heard issue before.

RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_COPPER)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_FIBER)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_DUAL)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_SERDES_QUAD)
RTE_PCI_DEV_ID_DECL_EM(PCI_VENDOR_ID_INTEL, E1000_DEV_ID_82571EB_QUAD_COPPER)


#define E1000_DEV_ID_82571EB_COPPER           0x105E
#define E1000_DEV_ID_82571EB_FIBER            0x105F
#define E1000_DEV_ID_82571EB_SERDES           0x1060
#define E1000_DEV_ID_82571EB_SERDES_DUAL      0x10D9
#define E1000_DEV_ID_82571EB_SERDES_QUAD      0x10DA
#define E1000_DEV_ID_82571EB_QUAD_COPPER      0x10A4

Thanks,

-----Original Message-----
From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: Saturday, March 08, 2014 4:58 AM
To: dev@dpdk.org
Subject: Re: [dpdk-dev] Intel 82571EB PMD support

Hi,

 anyone faced the same issue before?

Thanks & Regards
Chetan Bali
________________________________________
From: dev [dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: Friday, March 07, 2014 3:48 PM
To: dev@dpdk.org
Subject: [dpdk-dev] Intel 82571EB PMD support

Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-07 10:18 [dpdk-dev] Intel 82571EB PMD support Chetan Bali
  2014-03-08 12:57 ` Chetan Bali
@ 2014-03-09 14:09 ` Stefan Baranoff
  2014-03-09 14:18   ` Chetan Bali
  1 sibling, 1 reply; 7+ messages in thread
From: Stefan Baranoff @ 2014-03-09 14:09 UTC (permalink / raw)
  To: Chetan Bali; +Cc: dev

Chetan,

I saw exactly that behavior with an 82599EB but running DPDK version 1.3.2
and CentOS 6.2 and the fix for me was upgrading to CentOS 6.4 - there was a
thread a while back about a bug that caused DD to not be set but I can't
seem to find it right now.

I'm sorry I can't be of more help but at least this is a symptom that has
been seen before.

Regards,
Stefan

Sent from my smart phone; people don't make typos, Swype does!
On Mar 7, 2014 5:18 AM, "Chetan Bali" <chetan.bali@aricent.com> wrote:

> Hi,
>
> Do we have PMD support for intel 82571EB. We are having e1000e driver
> supported for 82571EB in linux.
>
> DPDK Version : 1.6.0-r1
>
> Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]
>
>
> Issue:
>
> When we run DPDK example [ l2fwd ], we are able to see successful init of
> rte_pmd_em and link is also detected successfully.
> But the RX, TX count are zero. If we try to fetch nic stats using
> rte_eth_stats_get(), we can see around 256 ipacket count but after that
> error count [rx error ] starts increasing.
>
> We are not able to see any packet on user app [ l2fwd ]. Does anyone else
> face the same issue?
>
> Regards
> Chetan Bali
>
>
>
>
>
> ===============================================================================
> Please refer to http://www.aricent.com/legal/email_disclaimer.html
> for important disclosures regarding this electronic communication.
>
> ===============================================================================
>

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-09 14:09 ` Stefan Baranoff
@ 2014-03-09 14:18   ` Chetan Bali
  2014-03-10 11:24     ` Chetan Bali
  0 siblings, 1 reply; 7+ messages in thread
From: Chetan Bali @ 2014-03-09 14:18 UTC (permalink / raw)
  To: Stefan Baranoff; +Cc: dev

Hi Stefan,

It will be of great help if you or anyone else could help me resolve this issue.

I have checked 82571EB on following setup:

OS version: CentOS 6.4 [ kernel 2.6.32.358 ]
DPDK version : DPDK 1.6.0-r1

Let me know if any update of centos can help resolve this issue?


Thanks & Regards
Chetan Bali
________________________________________
From: Stefan Baranoff [sbaranoff@gmail.com]
Sent: Sunday, March 09, 2014 7:39 PM
To: Chetan Bali
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] Intel 82571EB PMD support

Chetan,

I saw exactly that behavior with an 82599EB but running DPDK version 1.3.2 and CentOS 6.2 and the fix for me was upgrading to CentOS 6.4 - there was a thread a while back about a bug that caused DD to not be set but I can't seem to find it right now.

I'm sorry I can't be of more help but at least this is a symptom that has been seen before.

Regards,
Stefan

Sent from my smart phone; people don't make typos, Swype does!

On Mar 7, 2014 5:18 AM, "Chetan Bali" <chetan.bali@aricent.com<mailto:chetan.bali@aricent.com>> wrote:
Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

* Re: [dpdk-dev] Intel 82571EB PMD support
  2014-03-09 14:18   ` Chetan Bali
@ 2014-03-10 11:24     ` Chetan Bali
  0 siblings, 0 replies; 7+ messages in thread
From: Chetan Bali @ 2014-03-10 11:24 UTC (permalink / raw)
  To: Stefan Baranoff; +Cc: dev

Can anyone help me resolve this issue? We have bought the 82571EB dual port NIC and we are not able to run the DPDK pmd userapp on it.

Please update if there is any issue.

-----Original Message-----
From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Chetan Bali
Sent: 09 March 2014 19:49
To: Stefan Baranoff
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] Intel 82571EB PMD support

Hi Stefan,

It will be of great help if you or anyone else could help me resolve this issue.

I have checked 82571EB on following setup:

OS version: CentOS 6.4 [ kernel 2.6.32.358 ] DPDK version : DPDK 1.6.0-r1

Let me know if any update of centos can help resolve this issue?


Thanks & Regards
Chetan Bali
________________________________________
From: Stefan Baranoff [sbaranoff@gmail.com]
Sent: Sunday, March 09, 2014 7:39 PM
To: Chetan Bali
Cc: dev@dpdk.org
Subject: Re: [dpdk-dev] Intel 82571EB PMD support

Chetan,

I saw exactly that behavior with an 82599EB but running DPDK version 1.3.2 and CentOS 6.2 and the fix for me was upgrading to CentOS 6.4 - there was a thread a while back about a bug that caused DD to not be set but I can't seem to find it right now.

I'm sorry I can't be of more help but at least this is a symptom that has been seen before.

Regards,
Stefan

Sent from my smart phone; people don't make typos, Swype does!

On Mar 7, 2014 5:18 AM, "Chetan Bali" <chetan.bali@aricent.com<mailto:chetan.bali@aricent.com>> wrote:
Hi,

Do we have PMD support for intel 82571EB. We are having e1000e driver supported for 82571EB in linux.

DPDK Version : 1.6.0-r1

Linux Kernel : CentOS 6.4 [ kernel version 2.6.32-358.el6.x86_64 ]


Issue:

When we run DPDK example [ l2fwd ], we are able to see successful init of rte_pmd_em and link is also detected successfully.
But the RX, TX count are zero. If we try to fetch nic stats using rte_eth_stats_get(), we can see around 256 ipacket count but after that error count [rx error ] starts increasing.

We are not able to see any packet on user app [ l2fwd ]. Does anyone else face the same issue?

Regards
Chetan Bali




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================




===============================================================================
Please refer to http://www.aricent.com/legal/email_disclaimer.html
for important disclosures regarding this electronic communication.
===============================================================================

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

end of thread, other threads:[~2014-03-10 11:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-07 10:18 [dpdk-dev] Intel 82571EB PMD support Chetan Bali
2014-03-08 12:57 ` Chetan Bali
2014-03-08 16:22   ` Jayakumar, Muthurajan
2014-03-09  5:58     ` Chetan Bali
2014-03-09 14:09 ` Stefan Baranoff
2014-03-09 14:18   ` Chetan Bali
2014-03-10 11:24     ` Chetan Bali

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).