cregit-Linux how code gets into the kernel

Release 4.7 drivers/base/hypervisor.c

Directory: drivers/base
/*
 * hypervisor.c - /sys/hypervisor subsystem.
 *
 * Copyright (C) IBM Corp. 2006
 * Copyright (C) 2007 Greg Kroah-Hartman <gregkh@suse.de>
 * Copyright (C) 2007 Novell Inc.
 *
 * This file is released under the GPLv2
 */

#include <linux/kobject.h>
#include <linux/device.h>
#include <linux/export.h>
#include "base.h"


struct kobject *hypervisor_kobj;

EXPORT_SYMBOL_GPL(hypervisor_kobj);


int __init hypervisor_init(void) { hypervisor_kobj = kobject_create_and_add("hypervisor", NULL); if (!hypervisor_kobj) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
greg kroah-hartmangreg kroah-hartman1862.07%150.00%
michael holzheumichael holzheu1137.93%150.00%
Total29100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
greg kroah-hartmangreg kroah-hartman2548.08%133.33%
michael holzheumichael holzheu2446.15%133.33%
paul gortmakerpaul gortmaker35.77%133.33%
Total52100.00%3100.00%
Directory: drivers/base
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}