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=-7.7 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,URIBL_BLOCKED,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 748E9C04EB8 for ; Thu, 6 Dec 2018 14:58:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 38F6920700 for ; Thu, 6 Dec 2018 14:58:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544108319; bh=ATsJ33Y6+ClZI2SCx9tDULpwButVZ42YvMZacb8nCwE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=CgOd2kR5cGdZGs3ckntS7CZ73AaNdDj1cG6wLahbfm1qBc43zmHOWsHqGYAdsbqlZ W1vnyuxF1MtdKXp5OQKY+jSgGka1Pbgo4iwDAUtfTidjITpqJe649i4hmJW5RAN+x8 hb8d2PbPo5nZvWS7OwBiVIgzRwA+YNu2au4onwJk= DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 38F6920700 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726091AbeLFO6i (ORCPT ); Thu, 6 Dec 2018 09:58:38 -0500 Received: from mail.kernel.org ([198.145.29.99]:46300 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729589AbeLFOmA (ORCPT ); Thu, 6 Dec 2018 09:42:00 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (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 C82A92082B; Thu, 6 Dec 2018 14:41:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544107320; bh=ATsJ33Y6+ClZI2SCx9tDULpwButVZ42YvMZacb8nCwE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=u+CUqUCO7DmPNJR0gn4sO424HaW1JplPiMoc0ZRXv4w7hF8hGe2VuWPo9eqUhI1wK t2Ub7roewoZYAzEvUBFXlEsYxaq+JqGsInOXOUu4nR3vRrCqOcw38B3tOxF5ek/MND SbwgkzyC5AeQ6n7FqHO5SaM2aOaxiRFMgcwlgMDc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Stephen Rothwell , Linus Torvalds Subject: [PATCH 4.14 02/55] disable stringop truncation warnings for now Date: Thu, 6 Dec 2018 15:38:36 +0100 Message-Id: <20181206143001.891289784@linuxfoundation.org> X-Mailer: git-send-email 2.19.2 In-Reply-To: <20181206143001.749982936@linuxfoundation.org> References: <20181206143001.749982936@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore 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 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Stephen Rothwell commit 217c3e0196758662aa0429863b09d1c13da1c5d6 upstream. They are too noisy Signed-off-by: Stephen Rothwell Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- Makefile | 3 +++ 1 file changed, 3 insertions(+) --- a/Makefile +++ b/Makefile @@ -803,6 +803,9 @@ KBUILD_CFLAGS += $(call cc-option,-Wdecl # disable pointer signed / unsigned warnings in gcc 4.0 KBUILD_CFLAGS += $(call cc-disable-warning, pointer-sign) +# disable stringop warnings in gcc 8+ +KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation) + # disable invalid "can't wrap" optimizations for signed / pointers KBUILD_CFLAGS += $(call cc-option,-fno-strict-overflow)