cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/xen/debugfs.c

Directory: arch/x86/xen
// SPDX-License-Identifier: GPL-2.0
#include <linux/init.h>
#include <linux/debugfs.h>
#include <linux/slab.h>

#include "debugfs.h"


static struct dentry *d_xen_debug;


struct dentry * __init xen_init_debugfs(void) { if (!d_xen_debug) { d_xen_debug = debugfs_create_dir("xen", NULL); if (!d_xen_debug) pr_warning("Could not create 'xen' debugfs directory\n"); } return d_xen_debug; }

Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge39100.00%1100.00%
Total39100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Jeremy Fitzhardinge5493.10%133.33%
Tejun Heo35.17%133.33%
Greg Kroah-Hartman11.72%133.33%
Total58100.00%3100.00%
Directory: arch/x86/xen
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.