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 B07BA25A352 for ; Fri, 25 Jul 2025 20:34:18 +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=1753475658; cv=none; b=J6b7N59xsSu2dd8Y3pQOxKw5M+ppOdY8S71VzYTMQc3zMlclGXxE1rWE7kFITO78SvImoJpMKmsKl5iIUNh6+C/phCspQqVVor7Bt0ybQPiMz/r6oIxbyBO55iOhX0clpGLlcgENkpxa6khrFXrTVmGQXbgDNCyGB8yQhAerhoQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753475658; c=relaxed/simple; bh=vLVShok0cMXltuEHQ/ZOFR7qvRYl1xl7zH6FxAy5Phc=; h=Message-ID:Date:From:To:Cc:Subject:References:MIME-Version: Content-Type; b=kJ11BiCE6hRo0jB02FrFgu1RjRo4SIAqhW65/gUrv4lqH8qUBoHVXcLNGu8R+xktHh449HOhYuDKNW7SBgXZfwOM/BnxRDaS215H2Z9jH9S5Qfpi+E5LZjuXdvOkvEILKk4VyZZTIODfst8PuU5Yf3gYZtjn/VWCsjv1+vSPcfE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LxDYlbmc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LxDYlbmc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4D3CDC4CEF8; Fri, 25 Jul 2025 20:34:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1753475658; bh=vLVShok0cMXltuEHQ/ZOFR7qvRYl1xl7zH6FxAy5Phc=; h=Date:From:To:Cc:Subject:References:From; b=LxDYlbmcM3QpRznRHmDlcxRlkQZDbbvufapeqa7H2jS/kAoeFNBah9kP4mSazIUif KpX3nY433mdLcCLr82Gc3NMbB8xs1tnYBH6Xp2P3oj/Owm3qE/u/EnLIckMat4vUXT /t14/rgpiM8Ng/6z9o36wW+S+fBDIcUgruH9t5VqST5UrxTW4lLEO//COPumN5j5xy ree8/nT4ERhbmHAt/fhT4EQA+CrcutcXr2SWrEN9ND4EUR+4C1uHfaua1ir8Tqf+sL 5HhjS6XwCfwGyDKphiq97oh5LB9uJnRs1iJBzmmULdZNz8RI3javTxMpHJydAHYhli EHsoR3MHhz+Qg== Received: from rostedt by gandalf with local (Exim 4.98.2) (envelope-from ) id 1ufP7Y-00000001Qcs-1mjn; Fri, 25 Jul 2025 16:34:24 -0400 Message-ID: <20250725203424.278638879@kernel.org> User-Agent: quilt/0.68 Date: Fri, 25 Jul 2025 16:33:59 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Tomas Glozar , John Kacur , John Ogness , Masami Hiramatsu , Mathieu Desnoyers , Gabriele Monaco , Josh Poimboeuf , Petr Mladek , Stephen Rothwell , "Peter Zijlstra (Intel)" , Nam Cao Subject: [for-next][PATCH 02/25] panic: Fix up description of vpanic() References: <20250725203357.087558746@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 From: Nam Cao The description above vpanic() has the wrong function name. Fix it up. Cc: John Ogness Cc: Masami Hiramatsu Cc: Mathieu Desnoyers Cc: Gabriele Monaco Cc: Josh Poimboeuf Cc: Petr Mladek Link: https://lore.kernel.org/23a7e8add6546b155371b7e0fbb37bb1def13d6e.1752232374.git.namcao@linutronix.de Reported-by: Stephen Rothwell Closes: https://lore.kernel.org/lkml/20250711183802.2d8c124d@canb.auug.org.au/ Acked-by: Peter Zijlstra (Intel) Signed-off-by: Nam Cao Signed-off-by: Steven Rostedt (Google) --- kernel/panic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/panic.c b/kernel/panic.c index 6a1823c383d0..2a499facde13 100644 --- a/kernel/panic.c +++ b/kernel/panic.c @@ -307,7 +307,7 @@ static void panic_other_cpus_shutdown(bool crash_kexec) } /** - * panic - halt the system + * vpanic - halt the system * @fmt: The text string to print * @args: Arguments for the format string * -- 2.47.2