From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id A40CDA0351; Sat, 9 May 2020 13:53:21 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B46C2322C; Sat, 9 May 2020 13:53:20 +0200 (CEST) Received: from inbox.dpdk.org (xvm-172-178.dc0.ghst.net [95.142.172.178]) by dpdk.org (Postfix) with ESMTP id 08B6B293C for ; Sat, 9 May 2020 13:53:20 +0200 (CEST) Received: by inbox.dpdk.org (Postfix, from userid 33) id D2B1DA0353; Sat, 9 May 2020 13:53:19 +0200 (CEST) From: bugzilla@dpdk.org To: dev@dpdk.org Date: Sat, 09 May 2020 11:53:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: DPDK X-Bugzilla-Component: ethdev X-Bugzilla-Version: 16.04 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: longyuwlz@gmail.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: dev@dpdk.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://bugs.dpdk.org/ Auto-Submitted: auto-generated X-Auto-Response-Suppress: All MIME-Version: 1.0 Subject: [dpdk-dev] [Bug 470] vmxnet3 pmd cannot received icmp6 ns packet X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" https://bugs.dpdk.org/show_bug.cgi?id=3D470 Bug ID: 470 Summary: vmxnet3 pmd cannot received icmp6 ns packet Product: DPDK Version: 16.04 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: Normal Component: ethdev Assignee: dev@dpdk.org Reporter: longyuwlz@gmail.com Target Milestone: --- Environment: Vmware ESXi 6.5.0 vmxnet3 bind information: Network devices using DPDK-compatible driver =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 0000:03:00.0 'VMXNET3 Ethernet Controller' drv=3Digb_uio unused=3Duio_pci_g= eneric 0000:0b:00.0 'VMXNET3 Ethernet Controller' drv=3Digb_uio unused=3Duio_pci_g= eneric I changed vmxnet3_recv_pkts function to use rte_pktmbuf_dump dump all the m= buf pakcet received=E3=80=82 I changed vmxnet3_recv_pkts like this: + int i; ........ rcd_done: + for (i =3D 0; i < nb_rx; i++) { + struct rte_mbuf *m =3D rx_pkts[i]; + rte_pktmbuf_dump(stdout, m, m->pkt_len); + } Then I run our program and redirect the dump information to a file. Same ti= me, I used ping6 to send icmp6 ns packet in another virtual machine=E3=80=82 After awhile I greped icmp6 ns packet type from dumped file=EF=BC=8Cbut got= none packet dump information. After that, I binded vmxnet3 to kernel driver, and setted ipv6 address=EF= =BC=8Cthis time the interface can received icmp6 ns packet. --=20 You are receiving this mail because: You are the assignee for the bug.=