From patchwork Wed Jun 7 22:59:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Willy Tarreau X-Patchwork-Id: 103326 Delivered-To: patch@linaro.org Received: by 10.182.29.35 with SMTP id g3csp1991888obh; Wed, 7 Jun 2017 16:36:35 -0700 (PDT) X-Received: by 10.84.236.77 with SMTP id h13mr31389636pln.5.1496878595537; Wed, 07 Jun 2017 16:36:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1496878595; cv=none; d=google.com; s=arc-20160816; b=lkftGLTQTt206OHNnRyWOFOiHbqn3i5Zag5YiqRg6OhOp9xFMmyZIc3E9YIGyMGJQ9 wIGMOrA05EPeioWrF7NdiPqRgm8ou7JMEheNSh6A5GDu73O9HQSA7GL5RMkMBt7hbhEr nOqPPXqztzSX050YlXCZ3dUh7HPpsn1i52TM/2rQtZXZFu6GXqnOaAAJ6q/FVCOL62E5 fBcB4FQLVhwehXm4XlOkt3Q4wzIJScBz2050e5jSBpflxeznheU4c2PpQ2Fr9jY56zFD fWD2zNMJ/vhqwMMzTDGZ+Chn+h1ED5nmlfGmLAfziRugaIz6n7k4UB4cO7zzAHrnKTUW qjPA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=0zUhP2o+yGcrABMaCalPAXY5jdbNeqID/fefrC99i50=; b=TkJH0FphoU/Mb1y4knaXfsmqK8zkNXR/nZnW5U+vJNXIx5j6tgsOZ+qAAsNExDKLrk s7Abl0JGEvANKSplFmV3tx9Zdvj/9/JFkGzgq9URjd9V4ST9bgKBx0NH5wwVhSWym15c 4JoXq+dCIl53apj5Wobr0isKfKhEl1p7zwkRIXxNq6A9g/z+/mbnLkfooDeyjbns65In CE/o8bUqbfW1jJRINSedUftP6JupdBrCpR8GEAEEBLZ9Zh5pCoXsz+oZiwlH+SUbFGNP ItqusJesEFx+axNu4Fmfz8xbJh/T2Sex0tZ2U70HlJKd++CTZ5g4R7NUHd8eO5O4LLHM R/xg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of stable-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=stable-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u22si2947582plk.91.2017.06.07.16.36.35; Wed, 07 Jun 2017 16:36:35 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of stable-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of stable-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=stable-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752542AbdFGXf7 (ORCPT + 6 others); Wed, 7 Jun 2017 19:35:59 -0400 Received: from wtarreau.pck.nerim.net ([62.212.114.60]:50688 "EHLO 1wt.eu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753214AbdFGXFE (ORCPT ); Wed, 7 Jun 2017 19:05:04 -0400 Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id v57N1Txj000395; Thu, 8 Jun 2017 01:01:29 +0200 From: Willy Tarreau To: linux-kernel@vger.kernel.org, stable@vger.kernel.org, linux@roeck-us.net Cc: Arnd Bergmann , Ralf Baechle , linux-mips@linux-mips.org, James Hogan , Willy Tarreau Subject: [PATCH 3.10 161/250] MIPS: ip27: Disable qlge driver in defconfig Date: Thu, 8 Jun 2017 00:59:07 +0200 Message-Id: <1496876436-32402-162-git-send-email-w@1wt.eu> X-Mailer: git-send-email 2.8.0.rc2.1.gbe9624a In-Reply-To: <1496876436-32402-1-git-send-email-w@1wt.eu> References: <1496876436-32402-1-git-send-email-w@1wt.eu> Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Arnd Bergmann commit b617649468390713db1515ea79fc772d2eb897a8 upstream. One of the last remaining failures in kernelci.org is for a gcc bug: drivers/net/ethernet/qlogic/qlge/qlge_main.c:4819:1: error: insn does not satisfy its constraints: drivers/net/ethernet/qlogic/qlge/qlge_main.c:4819:1: internal compiler error: in extract_constrain_insn, at recog.c:2190 This is apparently broken in gcc-6 but fixed in gcc-7, and I cannot reproduce the problem here. However, it is clear that ip27_defconfig does not actually need this driver as the platform has only PCI-X but not PCIe, and the qlge adapter in turn is PCIe-only. The driver was originally enabled in 2010 along with lots of other drivers. Fixes: 59d302b342e5 ("MIPS: IP27: Make defconfig useful again.") Signed-off-by: Arnd Bergmann Cc: Ralf Baechle Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/15197/ Signed-off-by: James Hogan Signed-off-by: Willy Tarreau --- arch/mips/configs/ip27_defconfig | 1 - 1 file changed, 1 deletion(-) -- 2.8.0.rc2.1.gbe9624a diff --git a/arch/mips/configs/ip27_defconfig b/arch/mips/configs/ip27_defconfig index 0e36abc..7446284 100644 --- a/arch/mips/configs/ip27_defconfig +++ b/arch/mips/configs/ip27_defconfig @@ -206,7 +206,6 @@ CONFIG_MLX4_EN=m # CONFIG_MLX4_DEBUG is not set CONFIG_TEHUTI=m CONFIG_BNX2X=m -CONFIG_QLGE=m CONFIG_SFC=m CONFIG_BE2NET=m CONFIG_LIBERTAS_THINFIRM=m