search for: xen_acpi_pad_init

Displaying 2 results from an estimated 2 matches for "xen_acpi_pad_init".

2012 Feb 23
7
[PATCH 2/2] RFC: Xen pad logic
..., + {"", 0}, +}; + +static struct acpi_driver xen_acpi_pad_driver = { + .name = "processor_aggregator", + .class = ACPI_PROCESSOR_AGGREGATOR_CLASS, + .ids = xen_pad_device_ids, + .ops = { + .add = xen_acpi_pad_add, + .remove = xen_acpi_pad_remove, + }, +}; + +static int __init xen_acpi_pad_init(void) +{ + return acpi_bus_register_driver(&xen_acpi_pad_driver); +} + +void __init xen_init_pad_ops(void) +{ +#ifdef CONFIG_ACPI_PROCESSOR_AGGREGATOR + acpi_pad_ops.init = xen_acpi_pad_init; +#endif +} diff --git a/include/xen/interface/platform.h b/include/xen/interface/platform.h index c1684...
2016 Mar 22
19
[PATCH v3 0/11] tests/qemu: Add program for tracing and analyzing boot times.
Lots of changes since v2, too much to remember or summarize. Please ignore patch 11/11, it's just for my testing. Rich.