Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

lguest: typos fix

3 points

lguest_asm.S => i386_head.S
LHCALL_BREAK => LHREQ_BREAK
perferred => preferred

Signed-off-by: Atsushi SAKAI <sakaia@jp.fujitsu.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

authored by

Atsushi SAKAI and committed by
Rusty Russell
72410af9 18e352e4

+3 -3
+2 -2
arch/x86/lguest/boot.c
··· 931 931 * that we can fit comfortably. 932 932 * 933 933 * First we need assembly templates of each of the patchable Guest operations, 934 - * and these are in lguest_asm.S. */ 934 + * and these are in i386_head.S. */ 935 935 936 936 /*G:060 We construct a table from the assembler templates: */ 937 937 static const struct lguest_insns ··· 1093 1093 acpi_ht = 0; 1094 1094 #endif 1095 1095 1096 - /* We set the perferred console to "hvc". This is the "hypervisor 1096 + /* We set the preferred console to "hvc". This is the "hypervisor 1097 1097 * virtual console" driver written by the PowerPC people, which we also 1098 1098 * adapted for lguest's use. */ 1099 1099 add_preferred_console("hvc", 0, NULL);
+1 -1
drivers/lguest/core.c
··· 224 224 break; 225 225 226 226 /* If the Guest asked to be stopped, we sleep. The Guest's 227 - * clock timer or LHCALL_BREAK from the Waker will wake us. */ 227 + * clock timer or LHREQ_BREAK from the Waker will wake us. */ 228 228 if (cpu->halted) { 229 229 set_current_state(TASK_INTERRUPTIBLE); 230 230 schedule();