mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
tty: sysrq: switch sysrq handlers from int to u8
The passed parameter to sysrq handlers is a key (a character). So change the type from 'int' to 'u8'. Let it specifically be 'u8' for two reasons: * unsigned: unsigned values come from the upper layers (devices) and the tty layer assumes unsigned on most places, and * 8-bit: as that what's supposed to be one day in all the layers built on the top of tty. (Currently, we use mostly 'unsigned char' and somewhere still only 'char'. (But that also translates to the former thanks to -funsigned-char.)) Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Cc: Richard Henderson <richard.henderson@linaro.org> Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru> Cc: Matt Turner <mattst88@gmail.com> Cc: Huacai Chen <chenhuacai@kernel.org> Cc: WANG Xuerui <kernel@xen0n.name> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: "David S. Miller" <davem@davemloft.net> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Maxime Ripard <mripard@kernel.org> Cc: Thomas Zimmermann <tzimmermann@suse.de> Cc: David Airlie <airlied@gmail.com> Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Jason Wessel <jason.wessel@windriver.com> Cc: Daniel Thompson <daniel.thompson@linaro.org> Cc: Douglas Anderson <dianders@chromium.org> Cc: "Rafael J. Wysocki" <rafael@kernel.org> Cc: Len Brown <len.brown@intel.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: "Paul E. McKenney" <paulmck@kernel.org> Cc: Frederic Weisbecker <frederic@kernel.org> Cc: Neeraj Upadhyay <quic_neeraju@quicinc.com> Cc: Joel Fernandes <joel@joelfernandes.org> Cc: Josh Triplett <josh@joshtriplett.org> Cc: Boqun Feng <boqun.feng@gmail.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Lai Jiangshan <jiangshanlai@gmail.com> Cc: Zqiang <qiang.zhang1211@gmail.com> Acked-by: Thomas Zimmermann <tzimmermann@suse.de> # DRM Acked-by: WANG Xuerui <git@xen0n.name> # loongarch Acked-by: Paul E. McKenney <paulmck@kernel.org> Acked-by: Daniel Thompson <daniel.thompson@linaro.org> Link: https://lore.kernel.org/r/20230712081811.29004-3-jirislaby@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
00ef7eff2f
commit
bcb48185ed
@ -422,7 +422,7 @@ register_cpus(void)
|
||||
arch_initcall(register_cpus);
|
||||
|
||||
#ifdef CONFIG_MAGIC_SYSRQ
|
||||
static void sysrq_reboot_handler(int unused)
|
||||
static void sysrq_reboot_handler(u8 unused)
|
||||
{
|
||||
machine_halt();
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ static void sysrq_tlbdump_othercpus(struct work_struct *dummy)
|
||||
static DECLARE_WORK(sysrq_tlbdump, sysrq_tlbdump_othercpus);
|
||||
#endif
|
||||
|
||||
static void sysrq_handle_tlbdump(int key)
|
||||
static void sysrq_handle_tlbdump(u8 key)
|
||||
{
|
||||
sysrq_tlbdump_single(NULL);
|
||||
#ifdef CONFIG_SMP
|
||||
|
@ -44,7 +44,7 @@ static void sysrq_tlbdump_othercpus(struct work_struct *dummy)
|
||||
static DECLARE_WORK(sysrq_tlbdump, sysrq_tlbdump_othercpus);
|
||||
#endif
|
||||
|
||||
static void sysrq_handle_tlbdump(int key)
|
||||
static void sysrq_handle_tlbdump(u8 key)
|
||||
{
|
||||
sysrq_tlbdump_single(NULL);
|
||||
#ifdef CONFIG_SMP
|
||||
|
@ -3991,7 +3991,7 @@ static void xmon_init(int enable)
|
||||
}
|
||||
|
||||
#ifdef CONFIG_MAGIC_SYSRQ
|
||||
static void sysrq_handle_xmon(int key)
|
||||
static void sysrq_handle_xmon(u8 key)
|
||||
{
|
||||
if (xmon_is_locked_down()) {
|
||||
clear_all_bpt();
|
||||
|
@ -295,7 +295,7 @@ void arch_trigger_cpumask_backtrace(const cpumask_t *mask, bool exclude_self)
|
||||
|
||||
#ifdef CONFIG_MAGIC_SYSRQ
|
||||
|
||||
static void sysrq_handle_globreg(int key)
|
||||
static void sysrq_handle_globreg(u8 key)
|
||||
{
|
||||
trigger_all_cpu_backtrace();
|
||||
}
|
||||
@ -370,7 +370,7 @@ static void pmu_snapshot_all_cpus(void)
|
||||
spin_unlock_irqrestore(&global_cpu_snapshot_lock, flags);
|
||||
}
|
||||
|
||||
static void sysrq_handle_globpmu(int key)
|
||||
static void sysrq_handle_globpmu(u8 key)
|
||||
{
|
||||
pmu_snapshot_all_cpus();
|
||||
}
|
||||
|
@ -301,7 +301,7 @@ static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
|
||||
|
||||
static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
|
||||
|
||||
static void drm_fb_helper_sysrq(int dummy1)
|
||||
static void drm_fb_helper_sysrq(u8 dummy1)
|
||||
{
|
||||
schedule_work(&drm_fb_helper_restore_work);
|
||||
}
|
||||
|
@ -98,7 +98,7 @@ static int __init sysrq_always_enabled_setup(char *str)
|
||||
__setup("sysrq_always_enabled", sysrq_always_enabled_setup);
|
||||
|
||||
|
||||
static void sysrq_handle_loglevel(int key)
|
||||
static void sysrq_handle_loglevel(u8 key)
|
||||
{
|
||||
u8 loglevel = key - '0';
|
||||
|
||||
@ -114,7 +114,7 @@ static const struct sysrq_key_op sysrq_loglevel_op = {
|
||||
};
|
||||
|
||||
#ifdef CONFIG_VT
|
||||
static void sysrq_handle_SAK(int key)
|
||||
static void sysrq_handle_SAK(u8 key)
|
||||
{
|
||||
struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work;
|
||||
|
||||
@ -131,7 +131,7 @@ static const struct sysrq_key_op sysrq_SAK_op = {
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_VT
|
||||
static void sysrq_handle_unraw(int key)
|
||||
static void sysrq_handle_unraw(u8 key)
|
||||
{
|
||||
vt_reset_unicode(fg_console);
|
||||
}
|
||||
@ -146,7 +146,7 @@ static const struct sysrq_key_op sysrq_unraw_op = {
|
||||
#define sysrq_unraw_op (*(const struct sysrq_key_op *)NULL)
|
||||
#endif /* CONFIG_VT */
|
||||
|
||||
static void sysrq_handle_crash(int key)
|
||||
static void sysrq_handle_crash(u8 key)
|
||||
{
|
||||
/* release the RCU read lock before crashing */
|
||||
rcu_read_unlock();
|
||||
@ -160,7 +160,7 @@ static const struct sysrq_key_op sysrq_crash_op = {
|
||||
.enable_mask = SYSRQ_ENABLE_DUMP,
|
||||
};
|
||||
|
||||
static void sysrq_handle_reboot(int key)
|
||||
static void sysrq_handle_reboot(u8 key)
|
||||
{
|
||||
lockdep_off();
|
||||
local_irq_enable();
|
||||
@ -175,7 +175,7 @@ static const struct sysrq_key_op sysrq_reboot_op = {
|
||||
|
||||
const struct sysrq_key_op *__sysrq_reboot_op = &sysrq_reboot_op;
|
||||
|
||||
static void sysrq_handle_sync(int key)
|
||||
static void sysrq_handle_sync(u8 key)
|
||||
{
|
||||
emergency_sync();
|
||||
}
|
||||
@ -186,7 +186,7 @@ static const struct sysrq_key_op sysrq_sync_op = {
|
||||
.enable_mask = SYSRQ_ENABLE_SYNC,
|
||||
};
|
||||
|
||||
static void sysrq_handle_show_timers(int key)
|
||||
static void sysrq_handle_show_timers(u8 key)
|
||||
{
|
||||
sysrq_timer_list_show();
|
||||
}
|
||||
@ -197,7 +197,7 @@ static const struct sysrq_key_op sysrq_show_timers_op = {
|
||||
.action_msg = "Show clockevent devices & pending hrtimers (no others)",
|
||||
};
|
||||
|
||||
static void sysrq_handle_mountro(int key)
|
||||
static void sysrq_handle_mountro(u8 key)
|
||||
{
|
||||
emergency_remount();
|
||||
}
|
||||
@ -209,7 +209,7 @@ static const struct sysrq_key_op sysrq_mountro_op = {
|
||||
};
|
||||
|
||||
#ifdef CONFIG_LOCKDEP
|
||||
static void sysrq_handle_showlocks(int key)
|
||||
static void sysrq_handle_showlocks(u8 key)
|
||||
{
|
||||
debug_show_all_locks();
|
||||
}
|
||||
@ -249,7 +249,7 @@ static void sysrq_showregs_othercpus(struct work_struct *dummy)
|
||||
|
||||
static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus);
|
||||
|
||||
static void sysrq_handle_showallcpus(int key)
|
||||
static void sysrq_handle_showallcpus(u8 key)
|
||||
{
|
||||
/*
|
||||
* Fall back to the workqueue based printing if the
|
||||
@ -282,7 +282,7 @@ static const struct sysrq_key_op sysrq_showallcpus_op = {
|
||||
#define sysrq_showallcpus_op (*(const struct sysrq_key_op *)NULL)
|
||||
#endif
|
||||
|
||||
static void sysrq_handle_showregs(int key)
|
||||
static void sysrq_handle_showregs(u8 key)
|
||||
{
|
||||
struct pt_regs *regs = NULL;
|
||||
|
||||
@ -299,7 +299,7 @@ static const struct sysrq_key_op sysrq_showregs_op = {
|
||||
.enable_mask = SYSRQ_ENABLE_DUMP,
|
||||
};
|
||||
|
||||
static void sysrq_handle_showstate(int key)
|
||||
static void sysrq_handle_showstate(u8 key)
|
||||
{
|
||||
show_state();
|
||||
show_all_workqueues();
|
||||
@ -311,7 +311,7 @@ static const struct sysrq_key_op sysrq_showstate_op = {
|
||||
.enable_mask = SYSRQ_ENABLE_DUMP,
|
||||
};
|
||||
|
||||
static void sysrq_handle_showstate_blocked(int key)
|
||||
static void sysrq_handle_showstate_blocked(u8 key)
|
||||
{
|
||||
show_state_filter(TASK_UNINTERRUPTIBLE);
|
||||
}
|
||||
@ -325,7 +325,7 @@ static const struct sysrq_key_op sysrq_showstate_blocked_op = {
|
||||
#ifdef CONFIG_TRACING
|
||||
#include <linux/ftrace.h>
|
||||
|
||||
static void sysrq_ftrace_dump(int key)
|
||||
static void sysrq_ftrace_dump(u8 key)
|
||||
{
|
||||
ftrace_dump(DUMP_ALL);
|
||||
}
|
||||
@ -339,7 +339,7 @@ static const struct sysrq_key_op sysrq_ftrace_dump_op = {
|
||||
#define sysrq_ftrace_dump_op (*(const struct sysrq_key_op *)NULL)
|
||||
#endif
|
||||
|
||||
static void sysrq_handle_showmem(int key)
|
||||
static void sysrq_handle_showmem(u8 key)
|
||||
{
|
||||
show_mem(0, NULL);
|
||||
}
|
||||
@ -369,7 +369,7 @@ static void send_sig_all(int sig)
|
||||
read_unlock(&tasklist_lock);
|
||||
}
|
||||
|
||||
static void sysrq_handle_term(int key)
|
||||
static void sysrq_handle_term(u8 key)
|
||||
{
|
||||
send_sig_all(SIGTERM);
|
||||
console_loglevel = CONSOLE_LOGLEVEL_DEBUG;
|
||||
@ -400,7 +400,7 @@ static void moom_callback(struct work_struct *ignored)
|
||||
|
||||
static DECLARE_WORK(moom_work, moom_callback);
|
||||
|
||||
static void sysrq_handle_moom(int key)
|
||||
static void sysrq_handle_moom(u8 key)
|
||||
{
|
||||
schedule_work(&moom_work);
|
||||
}
|
||||
@ -412,7 +412,7 @@ static const struct sysrq_key_op sysrq_moom_op = {
|
||||
};
|
||||
|
||||
#ifdef CONFIG_BLOCK
|
||||
static void sysrq_handle_thaw(int key)
|
||||
static void sysrq_handle_thaw(u8 key)
|
||||
{
|
||||
emergency_thaw_all();
|
||||
}
|
||||
@ -426,7 +426,7 @@ static const struct sysrq_key_op sysrq_thaw_op = {
|
||||
#define sysrq_thaw_op (*(const struct sysrq_key_op *)NULL)
|
||||
#endif
|
||||
|
||||
static void sysrq_handle_kill(int key)
|
||||
static void sysrq_handle_kill(u8 key)
|
||||
{
|
||||
send_sig_all(SIGKILL);
|
||||
console_loglevel = CONSOLE_LOGLEVEL_DEBUG;
|
||||
@ -438,7 +438,7 @@ static const struct sysrq_key_op sysrq_kill_op = {
|
||||
.enable_mask = SYSRQ_ENABLE_SIGNAL,
|
||||
};
|
||||
|
||||
static void sysrq_handle_unrt(int key)
|
||||
static void sysrq_handle_unrt(u8 key)
|
||||
{
|
||||
normalize_rt_tasks();
|
||||
}
|
||||
|
@ -30,7 +30,7 @@
|
||||
#define SYSRQ_ENABLE_RTNICE 0x0100
|
||||
|
||||
struct sysrq_key_op {
|
||||
void (* const handler)(int);
|
||||
void (* const handler)(u8);
|
||||
const char * const help_msg;
|
||||
const char * const action_msg;
|
||||
const int enable_mask;
|
||||
|
@ -968,7 +968,7 @@ static int __init opt_kgdb_con(char *str)
|
||||
early_param("kgdbcon", opt_kgdb_con);
|
||||
|
||||
#ifdef CONFIG_MAGIC_SYSRQ
|
||||
static void sysrq_handle_dbg(int key)
|
||||
static void sysrq_handle_dbg(u8 key)
|
||||
{
|
||||
if (!dbg_io_ops) {
|
||||
pr_crit("ERROR: No KGDB I/O module available\n");
|
||||
|
@ -23,7 +23,7 @@ static void do_poweroff(struct work_struct *dummy)
|
||||
|
||||
static DECLARE_WORK(poweroff_work, do_poweroff);
|
||||
|
||||
static void handle_poweroff(int key)
|
||||
static void handle_poweroff(u8 key)
|
||||
{
|
||||
/* run sysrq poweroff on boot cpu */
|
||||
schedule_work_on(cpumask_first(cpu_online_mask), &poweroff_work);
|
||||
|
@ -1035,7 +1035,7 @@ static bool sysrq_rcu;
|
||||
module_param(sysrq_rcu, bool, 0444);
|
||||
|
||||
/* Dump grace-period-request information due to commandeered sysrq. */
|
||||
static void sysrq_show_rcu(int key)
|
||||
static void sysrq_show_rcu(u8 key)
|
||||
{
|
||||
show_rcu_gp_kthreads();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user