2019-05-27 14:55:21 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2015-11-23 18:33:49 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Citrix Systems
|
|
|
|
*
|
|
|
|
* Author: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/jump_label.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <asm/paravirt.h>
|
|
|
|
|
|
|
|
struct static_key paravirt_steal_enabled;
|
|
|
|
struct static_key paravirt_steal_rq_enabled;
|
|
|
|
|
2018-08-28 15:40:19 +08:00
|
|
|
struct paravirt_patch_template pv_ops;
|
|
|
|
EXPORT_SYMBOL_GPL(pv_ops);
|