From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8C9E6184540 for ; Sun, 14 Sep 2025 00:35:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757810152; cv=none; b=M8thUG/TFoavNSfyDeEvI5bh1gfEGIBfzgqFz6iLsJ+LcEeMxLCTtEf+tbaGc674QRzOyRWRsGQLSpCvF/laaAscKTd8+AcZVLWJx16ZRWASh0xUsvOCJvmKV1FZgXM5Wdu8kOYMnfiIyo2lFncEOh296OMS9z6MWtLCShSzCNg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1757810152; c=relaxed/simple; bh=Ce6iwWGfhCwLb/dszKVYalxszNSAcdDkQpeAbqSAeGI=; h=Date:To:From:Subject:Message-Id; b=d0/v2sMbG4q2f4PofWcbFkHzfD9glFWRSIX7MzKa94aIyYMS6FrEFsLzMJEWrS8TtRb9FsBEWqUEV0PbHLnv2CV3X3E0+BBQ3z/rYI0jVHVfqsJHuXNz1VeU704q9zGf88v3Xw1llLb85TKgvOlOVR+W9jvnipL/K9KCjvy2Rog= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=lv42bB3L; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="lv42bB3L" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 62054C4CEEB; Sun, 14 Sep 2025 00:35:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1757810152; bh=Ce6iwWGfhCwLb/dszKVYalxszNSAcdDkQpeAbqSAeGI=; h=Date:To:From:Subject:From; b=lv42bB3LjZddd5/gUpGdKa8beh8hKG434Of4/ZOY875FkF9XO2wJmYgg5Ut0bbERR vkbE5kdlU+R/tRHTz63ccCFNAvZ0TK3hkknL8UcE0zhMP3aQxdM8QXoBhlQvhSCZKt BWC5+cROSQHT8u+IIyg9vd0B2BfbtwT/+hMhIW5I= Date: Sat, 13 Sep 2025 17:35:51 -0700 To: mm-commits@vger.kernel.org,senozhatsky@chromium.org,rostedt@goodmis.org,qianqiang.liu@163.com,pmladek@suse.com,john.ogness@linutronix.de,wangjinchao600@gmail.com,akpm@linux-foundation.org From: Andrew Morton Subject: [merged mm-nonmm-stable] panic-use-angle-bracket-include-for-panich.patch removed from -mm tree Message-Id: <20250914003552.62054C4CEEB@smtp.kernel.org> Precedence: bulk X-Mailing-List: mm-commits@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The quilt patch titled Subject: panic: use angle-bracket include for panic.h has been removed from the -mm tree. Its filename was panic-use-angle-bracket-include-for-panich.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: Jinchao Wang Subject: panic: use angle-bracket include for panic.h Date: Fri, 29 Aug 2025 13:13:02 +0800 Replace quoted includes of panic.h with `#include ` for consistency across the kernel. Link: https://lkml.kernel.org/r/20250829051312.33773-1-wangjinchao600@gmail.com Signed-off-by: Jinchao Wang Reviewed-by: John Ogness Reviewed-by: Petr Mladek Cc: Qianqiang Liu Cc: Sergey Senozhatsky Cc: Steven Rostedt Signed-off-by: Andrew Morton --- kernel/crash_core.c | 2 +- kernel/printk/nbcon.c | 2 +- kernel/printk/printk.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) --- a/kernel/crash_core.c~panic-use-angle-bracket-include-for-panich +++ a/kernel/crash_core.c @@ -4,7 +4,6 @@ * Copyright (C) 2002-2004 Eric Biederman */ -#include "linux/panic.h" #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include @@ -23,6 +22,7 @@ #include #include #include +#include #include #include --- a/kernel/printk/nbcon.c~panic-use-angle-bracket-include-for-panich +++ a/kernel/printk/nbcon.c @@ -2,7 +2,6 @@ // Copyright (C) 2022 Linutronix GmbH, John Ogness // Copyright (C) 2022 Intel, Thomas Gleixner -#include "linux/panic.h" #include #include #include @@ -13,6 +12,7 @@ #include #include #include +#include #include #include #include --- a/kernel/printk/printk.c~panic-use-angle-bracket-include-for-panich +++ a/kernel/printk/printk.c @@ -17,7 +17,6 @@ * 01Mar01 Andrew Morton */ -#include "linux/panic.h" #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include @@ -49,6 +48,7 @@ #include #include #include +#include #include #include _ Patches currently in -mm which might be from wangjinchao600@gmail.com are