xref: /openbmc/linux/arch/arm/kernel/paravirt.c (revision 02c2433b)
102c2433bSStefano Stabellini /*
202c2433bSStefano Stabellini  * This program is free software; you can redistribute it and/or modify
302c2433bSStefano Stabellini  * it under the terms of the GNU General Public License version 2 as
402c2433bSStefano Stabellini  * published by the Free Software Foundation.
502c2433bSStefano Stabellini  *
602c2433bSStefano Stabellini  * This program is distributed in the hope that it will be useful,
702c2433bSStefano Stabellini  * but WITHOUT ANY WARRANTY; without even the implied warranty of
802c2433bSStefano Stabellini  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
902c2433bSStefano Stabellini  * GNU General Public License for more details.
1002c2433bSStefano Stabellini  *
1102c2433bSStefano Stabellini  * Copyright (C) 2013 Citrix Systems
1202c2433bSStefano Stabellini  *
1302c2433bSStefano Stabellini  * Author: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
1402c2433bSStefano Stabellini  */
1502c2433bSStefano Stabellini 
1602c2433bSStefano Stabellini #include <linux/export.h>
1702c2433bSStefano Stabellini #include <linux/jump_label.h>
1802c2433bSStefano Stabellini #include <linux/types.h>
1902c2433bSStefano Stabellini #include <asm/paravirt.h>
2002c2433bSStefano Stabellini 
2102c2433bSStefano Stabellini struct static_key paravirt_steal_enabled;
2202c2433bSStefano Stabellini struct static_key paravirt_steal_rq_enabled;
2302c2433bSStefano Stabellini 
2402c2433bSStefano Stabellini struct pv_time_ops pv_time_ops;
2502c2433bSStefano Stabellini EXPORT_SYMBOL_GPL(pv_time_ops);
26