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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A795C4332F for ; Mon, 12 Dec 2022 03:31:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230522AbiLLDb2 (ORCPT ); Sun, 11 Dec 2022 22:31:28 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33614 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230461AbiLLDbP (ORCPT ); Sun, 11 Dec 2022 22:31:15 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5F9E6D13A for ; Sun, 11 Dec 2022 19:31:14 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 2375CB80A1F for ; Mon, 12 Dec 2022 03:31:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CCA8CC433EF; Mon, 12 Dec 2022 03:31:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1670815871; bh=7bOOyJxhFnblpY9cXZ78fgmVWSepRk8ooZlsGUCW0eg=; h=Date:To:From:Subject:From; b=ET0ic31WYIPstrj+gZY8P119v3tz+Ec38KwORLfqZKoW+ZCTOmAc0sz0TwiwnIVIQ HdPys4jd/h1CfaBL87FaJfPNia/mXiqkF7mSuXG78dm0Qtl0riAU+K9CMwrZ9gwENK AZlm0/0XUAk8H+GSb8rqH2yhkWTK6/GkeA8Sa0YY= Date: Sun, 11 Dec 2022 19:31:11 -0800 To: mm-commits@vger.kernel.org, keescook@chromium.org, Jason@zx2c4.com, elver@google.com, davidgow@google.com, arnd@arndb.de, anders.roxell@linaro.org, akpm@linux-foundation.org From: Andrew Morton Subject: [merged mm-nonmm-stable] kernel-kcsan-kcsan_test-build-without-structleak-plugin.patch removed from -mm tree Message-Id: <20221212033111.CCA8CC433EF@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The quilt patch titled Subject: kernel: kcsan: kcsan_test: build without structleak plugin has been removed from the -mm tree. Its filename was kernel-kcsan-kcsan_test-build-without-structleak-plugin.patch This patch was dropped because it was merged into the mm-nonmm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Anders Roxell Subject: kernel: kcsan: kcsan_test: build without structleak plugin Date: Mon, 28 Nov 2022 11:43:58 +0100 Building kcsan_test with structleak plugin enabled makes the stack frame size to grow. kernel/kcsan/kcsan_test.c:704:1: error: the frame size of 3296 bytes is larger than 2048 bytes [-Werror=frame-larger-than=] Turn off the structleak plugin checks for kcsan_test. Link: https://lkml.kernel.org/r/20221128104358.2660634-1-anders.roxell@linaro.org Signed-off-by: Anders Roxell Suggested-by: Arnd Bergmann Acked-by: Marco Elver Cc: Arnd Bergmann Cc: David Gow Cc: Jason A. Donenfeld Cc: Kees Cook Signed-off-by: Andrew Morton --- kernel/kcsan/Makefile | 1 + 1 file changed, 1 insertion(+) --- a/kernel/kcsan/Makefile~kernel-kcsan-kcsan_test-build-without-structleak-plugin +++ a/kernel/kcsan/Makefile @@ -17,4 +17,5 @@ KCSAN_INSTRUMENT_BARRIERS_selftest.o := obj-$(CONFIG_KCSAN_SELFTEST) += selftest.o CFLAGS_kcsan_test.o := $(CFLAGS_KCSAN) -g -fno-omit-frame-pointer +CFLAGS_kcsan_test.o += $(DISABLE_STRUCTLEAK_PLUGIN) obj-$(CONFIG_KCSAN_KUNIT_TEST) += kcsan_test.o _ Patches currently in -mm which might be from anders.roxell@linaro.org are