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=-13.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_GIT 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 4AF10C43381 for ; Fri, 22 Feb 2019 21:45:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 155C7206DD for ; Fri, 22 Feb 2019 21:45:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726054AbfBVVpJ (ORCPT ); Fri, 22 Feb 2019 16:45:09 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:51095 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725900AbfBVVpI (ORCPT ); Fri, 22 Feb 2019 16:45:08 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from saeedm@mellanox.com) with ESMTPS (AES256-SHA encrypted); 22 Feb 2019 23:45:05 +0200 Received: from sx1.mtl.com ([172.16.5.65]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x1MLj3De022005; Fri, 22 Feb 2019 23:45:04 +0200 From: Saeed Mahameed To: "David S. Miller" Cc: netdev@vger.kernel.org, Saeed Mahameed Subject: [pull request][net-next 0/9] Mellanox, mlx5 updates 2019-02-21 Date: Fri, 22 Feb 2019 13:44:17 -0800 Message-Id: <20190222214426.27833-1-saeedm@mellanox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi Dave, This series adds misc updates to mlx5 driver. For more information please see tag log below. Please pull and let me know if there is any problem. Thanks, Saeed. --- The following changes since commit 2fce40a592daa92f1565152cb68d4c4ca7e97d52: Merge branch 'dsa-vlan' (2019-02-22 11:53:32 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux.git tags/mlx5-updates-2019-02-21 for you to fetch changes up to 4b89251de024fb85329e4cbd8fbea551ae6c665c: net/mlx5: Support ndo bridge_setlink and getlink (2019-02-22 13:38:25 -0800) ---------------------------------------------------------------- mlx5-updates-2019-02-21 This series adds some misc updates to mlx5 driver, 1) Eli Britstein, Introduces tunnel entropy control from PCMR register and fixes GRE key by controlling port tunnel entropy calculation. 2) Eran Ben Elisha, provides some mlx5 fixes to the latest tx devlink health reporting mechanism. 3) Huy Nguyen, Added the support for ndo bridge_setlink to allow VEPA/VEB E-Switch legacy mode configurations. ---------------------------------------------------------------- Eli Britstein (3): net/mlx5: Use read-modify-write when changing PCMR register values net/mlx5: Introduce tunnel entropy control in PCMR register net/mlx5e: Fix GRE key by controlling port tunnel entropy calculation Eran Ben Elisha (4): net/mlx5e: Fix warn print in case of TX reporter creation failure net/mlx5e: Re-add support for TX timeout when TX reporter is not valid net/mlx5e: Fix return status of TX reporter timeout recover net/mlx5e: Fix mlx5e_tx_reporter_create return value Huy Nguyen (2): net/mlx5: E-Switch, Add support for VEPA in legacy mode. net/mlx5: Support ndo bridge_setlink and getlink drivers/net/ethernet/mellanox/mlx5/core/Makefile | 2 +- .../ethernet/mellanox/mlx5/core/en/reporter_tx.c | 22 +- drivers/net/ethernet/mellanox/mlx5/core/en_main.c | 65 +++++- drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 18 +- drivers/net/ethernet/mellanox/mlx5/core/en_rep.h | 3 + drivers/net/ethernet/mellanox/mlx5/core/en_tx.c | 5 +- drivers/net/ethernet/mellanox/mlx5/core/eswitch.c | 223 +++++++++++++++++++-- drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 5 + .../net/ethernet/mellanox/mlx5/core/lib/port_tun.c | 205 +++++++++++++++++++ .../net/ethernet/mellanox/mlx5/core/lib/port_tun.h | 24 +++ drivers/net/ethernet/mellanox/mlx5/core/port.c | 9 +- include/linux/mlx5/mlx5_ifc.h | 12 +- include/linux/mlx5/port.h | 2 + 13 files changed, 553 insertions(+), 42 deletions(-) create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/lib/port_tun.c create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/lib/port_tun.h