Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 231966
b: refs/heads/master
c: ced05dd
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell committed Jan 20, 2011
1 parent 23969e0 commit 74283bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9f2954964df1490373065558f3156379c7a2454
refs/heads/master: ced05dd741779986861fe7369fe002f542d6fa34
2 changes: 1 addition & 1 deletion trunk/arch/x86/lguest/boot.c
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ static void __init lguest_init_IRQ(void)

for (i = FIRST_EXTERNAL_VECTOR; i < NR_VECTORS; i++) {
/* Some systems map "vectors" to interrupts weirdly. Not us! */
__this_cpu_write(vector_irq[i]) = i - FIRST_EXTERNAL_VECTOR;
__this_cpu_write(vector_irq[i], i - FIRST_EXTERNAL_VECTOR);
if (i != SYSCALL_VECTOR)
set_intr_gate(i, interrupt[i - FIRST_EXTERNAL_VECTOR]);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/lguest/x86/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void copy_in_guest_info(struct lg_cpu *cpu, struct lguest_pages *pages)
* Guest has changed.
*/
if (__this_cpu_read(lg_last_cpu) != cpu || cpu->last_pages != pages) {
__this_cpu_read(lg_last_cpu) = cpu;
__this_cpu_write(lg_last_cpu, cpu);
cpu->last_pages = pages;
cpu->changed = CHANGED_ALL;
}
Expand Down

0 comments on commit 74283bc

Please sign in to comment.