kvm: vmx: Limit guest PMCs to those supported on the host
[linux-2.6-block.git] / arch / x86 / xen / debugfs.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
994025ca
JF
2#include <linux/init.h>
3#include <linux/debugfs.h>
5a0e3ad6 4#include <linux/slab.h>
994025ca
JF
5
6#include "debugfs.h"
7
8static struct dentry *d_xen_debug;
9
10struct dentry * __init xen_init_debugfs(void)
11{
ad091376 12 if (!d_xen_debug)
994025ca 13 d_xen_debug = debugfs_create_dir("xen", NULL);
994025ca
JF
14 return d_xen_debug;
15}
16