]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/ia64/kernel/paravirt.c
[IA64] pvops: add to hooks, pv_time_ops, for steal time accounting.
[linux-2.6-omap-h63xx.git] / arch / ia64 / kernel / paravirt.c
index ba5383be03cb3dc9e024c47848faab5bf069907a..afaf5b9a2cf0735c60c1c73996fefba6f44635e2 100644 (file)
@@ -352,3 +352,18 @@ struct pv_irq_ops pv_irq_ops = {
 
        .resend_irq = ia64_native_resend_irq,
 };
+
+/***************************************************************************
+ * pv_time_ops
+ * time operations
+ */
+
+static int
+ia64_native_do_steal_accounting(unsigned long *new_itm)
+{
+       return 0;
+}
+
+struct pv_time_ops pv_time_ops = {
+       .do_steal_accounting = ia64_native_do_steal_accounting,
+};