X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fapic.c;h=188056918adef82cc0746552229b052db448739f;hb=ef944e47f418cfbf344757e3fbab5e40927966fe;hp=c437c630522a532e0c8c3cbefe4a293b71910bca;hpb=ae0d9f72adc43c791ac13037285385fd8bb3c206;p=palacios-OLD.git diff --git a/palacios/src/devices/apic.c b/palacios/src/devices/apic.c index c437c63..1880569 100644 --- a/palacios/src/devices/apic.c +++ b/palacios/src/devices/apic.c @@ -978,7 +978,7 @@ static int apic_begin_irq(struct guest_info * info, void * private_data, int irq /* Timer Functions */ -static void apic_update_time(struct guest_info * info, ullong_t cpu_cycles, ullong_t cpu_freq, void * priv_data) { +static void apic_update_timer(struct guest_info * info, ullong_t cpu_cycles, ullong_t cpu_freq, void * priv_data) { struct apic_state * apic = (struct apic_state *)(priv_data); // The 32 bit GCC runtime is a pile of shit #ifdef __V3_64BIT__ @@ -1071,7 +1071,7 @@ static struct intr_ctrl_ops intr_ops = { static struct vm_timer_ops timer_ops = { - .update_time = apic_update_time, + .update_timer = apic_update_timer, };