DPDK patches and discussions
 help / color / mirror / Atom feed
* ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5)
       [not found] <543678175.5148402.1654204621609.ref@mail.yahoo.com>
@ 2022-06-02 21:17 ` Mohan Gyara
  0 siblings, 0 replies; 4+ messages in thread
From: Mohan Gyara @ 2022-06-02 21:17 UTC (permalink / raw)
  To: dev

[-- Attachment #1: Type: text/plain, Size: 1096 bytes --]

Hi Team,
In our application we use 2 interfaces one to communicate towards gNB and another to communicate with higher layers in a UE simulator NR stack. Now we use a PCI whose driver is i40e and is bind to dpdk vfio-pci driver and this works perfectly towards higher layer, but the other interface PCI whose is ixgbe driver is bind to vfio-pci dpdk driver and has some issues. 
The issues are:1. Application crashes when "rte_eth_dev_mac_addr_add" function is called when return with -1.  "on a 82599 VF, adding again the same MAC addr is not an idempotent operation..." this is a comment, but the function ixgbevf_add_mac_addr  return -1 when memcmp(hw->mac.perm_addr, mac_addr) == 0) is true. But above I commented the "return -1" and just returned from it, so crash is not seen.2. After above 1, application is started successfully but then I do not see any messages coming on this interface. This is the problem? 
Could you guide me what is the issue? I see only issue with ixgbvf but not for i40evf.
I am using dpdk-stable-19.11.5 version.

Kindly help me here.
Regards,Mohan 

[-- Attachment #2: Type: text/html, Size: 2129 bytes --]

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

* Re: ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5)
  2022-06-03  8:59   ` Bruce Richardson
@ 2022-06-04 13:50     ` Mohan Gyara
  0 siblings, 0 replies; 4+ messages in thread
From: Mohan Gyara @ 2022-06-04 13:50 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, qiming.yang, wenjun1.wu

[-- Attachment #1: Type: text/plain, Size: 1621 bytes --]

 Hi,
I am blocked for almost 2 weeks now, I have browsed ixgbevf driver code but couldn't get any clue. kindly help me with this issue.

Regards,Mohan
    On Friday, 3 June, 2022, 02:29:58 pm IST, Bruce Richardson <bruce.richardson@intel.com> wrote:  
 
 + ixgbe maintainers on CC

On Fri, Jun 03, 2022 at 08:14:00AM +0000, Mohan Gyara wrote:
>    Hi Team,
>    In our application we use 2 interfaces one to communicate towards gNB
>    and another to communicate with higher layers in a UE simulator NR
>    stack. Now we use a PCI whose driver is i40e and is bind to dpdk
>    vfio-pci driver and this works perfectly towards higher layer, but the
>    other interface PCI whose is ixgbe driver is bind to vfio-pci dpdk
>    driver and has some issues.
>    The issues are:
>    1. Application crashes when "rte_eth_dev_mac_addr_add" function is
>    called when return with -1.
>      "on a 82599 VF, adding again the same MAC addr is not an idempotent
>    operation..." this is a comment, but the function ixgbevf_add_mac_addr
>    return -1 when memcmp(hw->mac.perm_addr, mac_addr) == 0) is true.
>    But above I commented the "return -1" and just returned from it, so
>    crash is not seen.
>    2. After above 1, application is started successfully but then I do not
>    see any messages coming on this interface. This is the problem?
>    Could you guide me what is the issue? I see only issue with ixgbvf but
>    not for i40evf.
>    I am using dpdk-stable-19.11.5 version.
>    Kindly help me here.
>    Regards,
>    Mohan
  

[-- Attachment #2: Type: text/html, Size: 3258 bytes --]

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

* Re: ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5)
  2022-06-03  8:14 ` Mohan Gyara
@ 2022-06-03  8:59   ` Bruce Richardson
  2022-06-04 13:50     ` Mohan Gyara
  0 siblings, 1 reply; 4+ messages in thread
From: Bruce Richardson @ 2022-06-03  8:59 UTC (permalink / raw)
  To: Mohan Gyara; +Cc: dev, qiming.yang, wenjun1.wu

+ ixgbe maintainers on CC

On Fri, Jun 03, 2022 at 08:14:00AM +0000, Mohan Gyara wrote:
>    Hi Team,
>    In our application we use 2 interfaces one to communicate towards gNB
>    and another to communicate with higher layers in a UE simulator NR
>    stack. Now we use a PCI whose driver is i40e and is bind to dpdk
>    vfio-pci driver and this works perfectly towards higher layer, but the
>    other interface PCI whose is ixgbe driver is bind to vfio-pci dpdk
>    driver and has some issues.
>    The issues are:
>    1. Application crashes when "rte_eth_dev_mac_addr_add" function is
>    called when return with -1.
>      "on a 82599 VF, adding again the same MAC addr is not an idempotent
>    operation..." this is a comment, but the function ixgbevf_add_mac_addr
>    return -1 when memcmp(hw->mac.perm_addr, mac_addr) == 0) is true.
>    But above I commented the "return -1" and just returned from it, so
>    crash is not seen.
>    2. After above 1, application is started successfully but then I do not
>    see any messages coming on this interface. This is the problem?
>    Could you guide me what is the issue? I see only issue with ixgbvf but
>    not for i40evf.
>    I am using dpdk-stable-19.11.5 version.
>    Kindly help me here.
>    Regards,
>    Mohan

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

* ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5)
       [not found] <1455096021.5344065.1654244040257.ref@mail.yahoo.com>
@ 2022-06-03  8:14 ` Mohan Gyara
  2022-06-03  8:59   ` Bruce Richardson
  0 siblings, 1 reply; 4+ messages in thread
From: Mohan Gyara @ 2022-06-03  8:14 UTC (permalink / raw)
  To: dev

[-- Attachment #1: Type: text/plain, Size: 1095 bytes --]

Hi Team,
In our application we use 2 interfaces one to communicate towards gNB and another to communicate with higher layers in a UE simulator NR stack. Now we use a PCI whose driver is i40e and is bind to dpdk vfio-pci driver and this works perfectly towards higher layer, but the other interface PCI whose is ixgbe driver is bind to vfio-pci dpdk driver and has some issues. 
The issues are:1. Application crashes when "rte_eth_dev_mac_addr_add" function is called when return with -1.  "on a 82599 VF, adding again the same MAC addr is not an idempotent operation..." this is a comment, but the function ixgbevf_add_mac_addr  return -1 when memcmp(hw->mac.perm_addr, mac_addr) == 0) is true. But above I commented the "return -1" and just returned from it, so crash is not seen.2. After above 1, application is started successfully but then I do not see any messages coming on this interface. This is the problem? 
Could you guide me what is the issue? I see only issue with ixgbvf but not for i40evf.
I am using dpdk-stable-19.11.5 version.

Kindly help me here.
Regards,Mohan

[-- Attachment #2: Type: text/html, Size: 3583 bytes --]

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

end of thread, other threads:[~2022-06-05  7:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <543678175.5148402.1654204621609.ref@mail.yahoo.com>
2022-06-02 21:17 ` ixgbevf in dpdk doesn't seems to work (dpdk-stable-19.11.5) Mohan Gyara
     [not found] <1455096021.5344065.1654244040257.ref@mail.yahoo.com>
2022-06-03  8:14 ` Mohan Gyara
2022-06-03  8:59   ` Bruce Richardson
2022-06-04 13:50     ` Mohan Gyara

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