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=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 78F5FC2D0DB for ; Fri, 24 Jan 2020 11:28:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 467B420704 for ; Fri, 24 Jan 2020 11:28:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579865300; bh=W8O85DiBEzqBgzMahDt+ZMPXsPA78j++WGEZ/A6mn4c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=b5+WaRYburqr/mwXcbt+S1CYXNA/kLpj/qoujX5Yur9eVwYEU7jQF/Cu3sTwpwb5u PTBM8tyxeupUmGND16ECn5LAVsvBD2dxJ15/Prrp3IYSBNXJiWV0MOw+1yIddyuboV h/AAMArl2uuNxXiAFwVH6wj1Rjw1UzsLhMb5O6xo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2404054AbgAXL2T (ORCPT ); Fri, 24 Jan 2020 06:28:19 -0500 Received: from mail.kernel.org ([198.145.29.99]:44338 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2404042AbgAXL2O (ORCPT ); Fri, 24 Jan 2020 06:28:14 -0500 Received: from localhost (ip-213-127-102-57.ip.prioritytelecom.net [213.127.102.57]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E21AD206D4; Fri, 24 Jan 2020 11:28:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1579865294; bh=W8O85DiBEzqBgzMahDt+ZMPXsPA78j++WGEZ/A6mn4c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RsQxM+ATfojP+YnW9tHn4e6voDGO3SJghGopeZA5DtCK7A9v4SX/s07UK+IHiCiY0 5m+OSxg9p+XH2EzncVtMpViqkdrWecU1LSbbTC6QsyB4sPJXbUWzcPCL3mYwIBB8YF NTmGOSZ7KpxbgZhwc/vYwMD9KANBuWuj14kcUilE= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Mark Zhang , Yishai Hadas , Leon Romanovsky , Sasha Levin Subject: [PATCH 4.19 494/639] net/mlx5: Fix mlx5_ifc_query_lag_out_bits Date: Fri, 24 Jan 2020 10:31:04 +0100 Message-Id: <20200124093150.643004221@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200124093047.008739095@linuxfoundation.org> References: <20200124093047.008739095@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Mark Zhang [ Upstream commit ea77388b02270b0af8dc57f668f311235ea068f0 ] Remove the "reserved_at_40" field to match the device specification. Fixes: 84df61ebc69b ("net/mlx5: Add HW interfaces used by LAG") Signed-off-by: Mark Zhang Reviewed-by: Yishai Hadas Signed-off-by: Leon Romanovsky Signed-off-by: Sasha Levin --- include/linux/mlx5/mlx5_ifc.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/linux/mlx5/mlx5_ifc.h b/include/linux/mlx5/mlx5_ifc.h index 177f11c96187b..76b76b6aa83d0 100644 --- a/include/linux/mlx5/mlx5_ifc.h +++ b/include/linux/mlx5/mlx5_ifc.h @@ -9053,8 +9053,6 @@ struct mlx5_ifc_query_lag_out_bits { u8 syndrome[0x20]; - u8 reserved_at_40[0x40]; - struct mlx5_ifc_lagc_bits ctx; }; -- 2.20.1