From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 33) id C66B83250; Wed, 15 Aug 2018 19:34:00 +0200 (CEST) From: bugzilla@dpdk.org To: dev@dpdk.org Date: Wed, 15 Aug 2018 17:34:00 +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: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dpdk@stormmq.com X-Bugzilla-Status: CONFIRMED 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 83] For RSS flow actions, e1000_ethdev.h uses IGB_MAX_RX_QUEUE_NUM instead of IGB_MAX_RX_QUEUE_NUM_82576 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: , X-List-Received-Date: Wed, 15 Aug 2018 17:34:00 -0000 https://bugs.dpdk.org/show_bug.cgi?id=3D83 Bug ID: 83 Summary: For RSS flow actions, e1000_ethdev.h uses IGB_MAX_RX_QUEUE_NUM instead of IGB_MAX_RX_QUEUE_NUM_82576 Product: DPDK Version: unspecified Hardware: All OS: All Status: CONFIRMED Severity: normal Priority: Normal Component: ethdev Assignee: dev@dpdk.org Reporter: dpdk@stormmq.com Target Milestone: --- NOTE: This report needs to be confirmed by someone who is familiar with this code. When using the rss_flow_action, the `queue_num` needs to be specified. The = only indication of what the maximum value for this is from `rte_eth_dev_info.max_rx_queues`. This seems to work for all PMDs that supp= ort this flow action *except* for the 82576 variant of e1000. This is because at line 239, the 'queue' parameter of struct igb_rte_flow_rss_conf is defined as IGB_MAX_RX_QUEUE_NUM, yet this device reports its maximum queue size as being the same as IGB_MAX_RX_QUEUE_NUM_82= 576 in `rte_eth_dev_info.max_rx_queues` - although it doesn't reference the same constant. --=20 You are receiving this mail because: You are the assignee for the bug.=