From patchwork Mon Dec 10 03:04:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Saeed Mahameed X-Patchwork-Id: 10720565 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 2F25D1759 for ; Mon, 10 Dec 2018 03:05:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1B741286DF for ; Mon, 10 Dec 2018 03:05:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0A50F29D12; Mon, 10 Dec 2018 03:05:03 +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 9D14B286DF for ; Mon, 10 Dec 2018 03:05:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726395AbeLJDFA (ORCPT ); Sun, 9 Dec 2018 22:05:00 -0500 Received: from mail-il-dmz.mellanox.com ([193.47.165.129]:50920 "EHLO mellanox.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726371AbeLJDFA (ORCPT ); Sun, 9 Dec 2018 22:05:00 -0500 Received: from Internal Mail-Server by MTLPINE1 (envelope-from saeedm@mellanox.com) with ESMTPS (AES256-SHA encrypted); 10 Dec 2018 05:11:04 +0200 Received: from sx1.mtl.com ([172.16.5.55]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id wBA34sGI008514; Mon, 10 Dec 2018 05:04:55 +0200 From: Saeed Mahameed To: Leon Romanovsky , saeedm@mellanox.com Cc: netdev@vger.kernel.org, linux-rdma@vger.kernel.org, Jason Gunthorpe Subject: [PATCH mlx5-next 00/10] mlx5 core updates and cleanups Date: Sun, 9 Dec 2018 19:04:32 -0800 Message-Id: <20181210030442.7543-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, Simplify netdev unbinding in mlx5_ib and remove unsed mlx5 interface callback (get_protocol). 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 (2): IB/mlx5: Simplify netdev unbinding 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 | 18 +-- 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, 296 insertions(+), 106 deletions(-)