Skip to content

Commit 901735e

Browse files
committed
Merge tag 'x86_misc_for_v6.1_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull misc x86 fixes from Borislav Petkov: - Drop misleading "RIP" from the opcodes dumping message - Correct APM entry's Konfig help text * tag 'x86_misc_for_v6.1_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/dumpstack: Don't mention RIP in "Code: " x86/Kconfig: Specify idle=poll instead of no-hlt
2 parents bb1f115 + 5258b80 commit 901735e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/x86/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2577,7 +2577,7 @@ menuconfig APM
25772577

25782578
1) make sure that you have enough swap space and that it is
25792579
enabled.
2580-
2) pass the "no-hlt" option to the kernel
2580+
2) pass the "idle=poll" option to the kernel
25812581
3) switch on floating point emulation in the kernel and pass
25822582
the "no387" option to the kernel
25832583
4) pass the "floppy=nodma" option to the kernel

arch/x86/kernel/dumpstack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ void show_opcodes(struct pt_regs *regs, const char *loglvl)
128128
/* No access to the user space stack of other tasks. Ignore. */
129129
break;
130130
default:
131-
printk("%sCode: Unable to access opcode bytes at RIP 0x%lx.\n",
131+
printk("%sCode: Unable to access opcode bytes at 0x%lx.\n",
132132
loglvl, prologue);
133133
break;
134134
}

0 commit comments

Comments
 (0)