From patchwork Mon Dec 10 21:15:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Saeed Mahameed X-Patchwork-Id: 10722537 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BAE136C5 for ; Mon, 10 Dec 2018 21:15:29 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A9B102ABFE for ; Mon, 10 Dec 2018 21:15:29 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9DCF92AC16; Mon, 10 Dec 2018 21:15:29 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 44C372ABFE for ; Mon, 10 Dec 2018 21:15:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728380AbeLJVP1 (ORCPT ); Mon, 10 Dec 2018 16:15:27 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:59786 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726959AbeLJVP1 (ORCPT ); Mon, 10 Dec 2018 16:15:27 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from saeedm@mellanox.com) with ESMTPS (AES256-SHA encrypted); 10 Dec 2018 23:21:30 +0200 Received: from sx1.mtl.com ([172.16.5.55]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id wBALFKCt032555; Mon, 10 Dec 2018 23:15:21 +0200 From: Saeed Mahameed To: Leon Romanovsky , saeedm@mellanox.com Cc: netdev@vger.kernel.org, linux-rdma@vger.kernel.org, Jason Gunthorpe Subject: [PATCH V2 mlx5-next 0/9] mlx5 core updates and cleanups Date: Mon, 10 Dec 2018 13:15:08 -0800 Message-Id: <20181210211517.3686-1-saeedm@mellanox.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi This patchset is for mlx5-next shared branch, and will be applied there once the review is done. 1) From Eli Britstein, add mlx5 core support for flow steering extended destination 2) From Mikhael Goikhman, port module events cleanup and support for PCIe power slot exceeded errors and plugged-disabled cable status. 3) Eyal Davidovich adds monitor commands layout and event data. 4) From Or Gerlitz, remove unsed mlx5 interface callback (get_protocol). 5) From Oz Shlomo, Revise gre and nvgre key formats v1->v2: - Improve commit message for "Change vhca id valid bool field to bit flag" - mlx5_core_warn instead of pr_warn - drop "IB/mlx5: Simplify netdev unbinding" patch, it can go to rdma only Thanks, Saeed. --- Eli Britstein (3): net/mlx5: Introduce extended destination fields net/mlx5: E-Switch, Change vhca id valid bool field to bit flag net/mlx5: Support extended destination format in flow steering command Eyal Davidovich (1): net/mlx5: Add monitor commands layout and event data Mikhael Goikhman (3): net/mlx5: Rework handling of port module events net/mlx5: Add support for PCIe power slot exceeded error in PME net/mlx5: Add support for plugged-disabled cable status in PME Or Gerlitz (1): net/mlx5: Remove the get protocol device interface entry Oz Shlomo (1): net/mlx5: Revise gre and nvgre key formats drivers/infiniband/hw/mlx5/main.c | 4 +- drivers/net/ethernet/mellanox/mlx5/core/cmd.c | 4 + drivers/net/ethernet/mellanox/mlx5/core/dev.c | 22 ---- .../mellanox/mlx5/core/diag/fs_tracepoint.c | 8 +- .../net/ethernet/mellanox/mlx5/core/en_main.c | 8 -- .../ethernet/mellanox/mlx5/core/en_stats.c | 8 +- drivers/net/ethernet/mellanox/mlx5/core/eq.c | 3 + .../mellanox/mlx5/core/eswitch_offloads.c | 8 +- .../net/ethernet/mellanox/mlx5/core/events.c | 89 ++++++++----- .../net/ethernet/mellanox/mlx5/core/fs_cmd.c | 83 ++++++++++-- .../ethernet/mellanox/mlx5/core/lib/mlx5.h | 21 ++-- include/linux/mlx5/device.h | 1 + include/linux/mlx5/driver.h | 2 - include/linux/mlx5/fs.h | 8 +- include/linux/mlx5/mlx5_ifc.h | 119 +++++++++++++++++- 15 files changed, 287 insertions(+), 101 deletions(-)