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 41D70A04F3; Sat, 7 Dec 2019 23:28:06 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6560E1DBC; Sat, 7 Dec 2019 23:28:05 +0100 (CET) Received: from mail-pg1-f195.google.com (mail-pg1-f195.google.com [209.85.215.195]) by dpdk.org (Postfix) with ESMTP id 6BECF235 for ; Sat, 7 Dec 2019 23:28:04 +0100 (CET) Received: by mail-pg1-f195.google.com with SMTP id x7so5136664pgl.11 for ; Sat, 07 Dec 2019 14:28:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=C4aKyY9746KGp/+C9jlbgHG9P/GVYkzqfhLAE7xWg88=; b=VP9Rpo+VdcZnEiNHEwBEnYf7+3JI1FcCY3/iOXAKGUkhsDmJAlJB8R0U9RoAskqE68 cQ1aDsEvNGTVwCDQVL68m5651S6+PKjS0564JvS2vSO3au7MVs2duHpkY8lJfoMGvfNe UZ1xJP0ImG+0X0ULIgy/b5aokk/1IUhdd9REMlam1Qh4Fhvcm6li6CKFl1SiAwhxWjn3 5AMpFfHYxv9+DRpMqEnV5/DVf4piHry3Jt2SMXa4pb8/NiE0I2eeCKgqkMNfsLVI6QoG ktjfW9h0+EE2ctf1nVuFXKdoPlLIvAFkJDXIMoI2C3t1rQap/rh/BLa+OysqfPFRSo/J F8HQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=C4aKyY9746KGp/+C9jlbgHG9P/GVYkzqfhLAE7xWg88=; b=sIcc7z/XVzObPV+OLMhpfb+C/E7+deojlkH3aZ9PVyRYEuH0PSG2zyar8bU6in4SjI AAIATBvdnB7Rou9Y2PqsJ+SF4rPqgPRzhdHLtC8jPo3ZKV/QeNpnepDPxcEvk/HclVrP yUVi9e6ZQ4fjI8K7jG/kHYOK418Fa6k3jeK7H4gQrUHezTFlGMetfuISrS0svhBSNBVy FIL4javMvy2FxkSrfq7IOnhpc24r8N3CyXefe2Zc+ohJtBuROGNjvKw7ehBWsG6hC5mU jMhN0CLeqol7YqIRzMKZY/kId5p5ERPfnoEhk1Sko80bL1hDKJD0DqpY7bs+FcUwM07t UsLg== X-Gm-Message-State: APjAAAVMDiTkXF/hXfs+WfzWSaa6p8ePEkA3W80Fo1oHcWNSUMLdhYIe 1w6qotdJ30k8Rk2Gzm11yEgJ0Q== X-Google-Smtp-Source: APXvYqzABYn5qWNir1dIxFDlJQULILUOo3UN9M7URihQeyQ4IDfSlmTFvZyGKs8CGiUJRlv2clLeuw== X-Received: by 2002:a65:5281:: with SMTP id y1mr10915672pgp.327.1575757683338; Sat, 07 Dec 2019 14:28:03 -0800 (PST) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id l9sm19737729pgh.34.2019.12.07.14.28.02 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 07 Dec 2019 14:28:03 -0800 (PST) Date: Sat, 7 Dec 2019 14:27:55 -0800 From: Stephen Hemminger To: Ajit Khaparde Cc: dev@dpdk.org, ferruh.yigit@intel.com Message-ID: <20191207142755.68311e1e@hermes.lan> In-Reply-To: <20191207005919.10962-2-ajit.khaparde@broadcom.com> References: <20191207005919.10962-1-ajit.khaparde@broadcom.com> <20191207005919.10962-2-ajit.khaparde@broadcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level 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" On Fri, 6 Dec 2019 16:59:17 -0800 Ajit Khaparde wrote: > */ > struct rte_eth_rss_conf { > uint8_t *rss_key; /**< If not NULL, 40-byte hash key. */ > uint8_t rss_key_len; /**< hash key length in bytes. */ > uint64_t rss_hf; /**< Hash functions to apply - see below. */ > + uint32_t rss_level; /**< RSS hash level */ > }; > This is an API/ABI change which is not allowed per current policy. API/ABI is frozen since 19.11 until the DPDK 20.11 release You need to figure out another way to do this.