From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.3 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BA833C3F2D1 for ; Fri, 6 Mar 2020 00:43:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 96CEB2073D for ; Fri, 6 Mar 2020 00:43:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726440AbgCFAnA (ORCPT ); Thu, 5 Mar 2020 19:43:00 -0500 Received: from mga18.intel.com ([134.134.136.126]:13008 "EHLO mga18.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726128AbgCFAnA (ORCPT ); Thu, 5 Mar 2020 19:43:00 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Mar 2020 16:43:00 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,520,1574150400"; d="scan'208";a="413720048" Received: from jekeller-mobl1.amr.corp.intel.com (HELO [134.134.177.106]) ([134.134.177.106]) by orsmga005.jf.intel.com with ESMTP; 05 Mar 2020 16:42:59 -0800 Subject: Re: [PATCH net-next iproute2 1/2] Update devlink kernel header To: Parav Pandit , netdev@vger.kernel.org Cc: stephen@networkplumber.org, dsahern@kernel.org, jiri@mellanox.com References: <20200304040626.26320-1-parav@mellanox.com> <20200304040626.26320-2-parav@mellanox.com> From: Jacob Keller Organization: Intel Corporation Message-ID: Date: Thu, 5 Mar 2020 16:42:59 -0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <20200304040626.26320-2-parav@mellanox.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On 3/3/2020 8:06 PM, Parav Pandit wrote: > Update devlink kernel header to commit: > acf1ee44ca5d ("devlink: Introduce devlink port flavour virtual") > > Signed-off-by: Parav Pandit > --- > include/uapi/linux/devlink.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/uapi/linux/devlink.h b/include/uapi/linux/devlink.h > index 3f82dedd..1b412281 100644 > --- a/include/uapi/linux/devlink.h > +++ b/include/uapi/linux/devlink.h > @@ -187,6 +187,7 @@ enum devlink_port_flavour { > * for the PCI VF. It is an internal > * port that faces the PCI VF. > */ > + DEVLINK_PORT_FLAVOUR_VIRTUAL, /* Any virtual port facing the user. */ > }; > > enum devlink_param_cmode { > @@ -252,6 +253,8 @@ enum devlink_trap_type { > enum { > /* Trap can report input port as metadata */ > DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT, > + /* Trap can report flow action cookie as metadata */ > + DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE, > }; > This hunk doesn't seem relevant to the patch and isn't mentioned in the subject or description. Thanks, Jake > enum devlink_attr { >