cregit-Linux how code gets into the kernel

Release 4.14 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-Hartman1862.07%150.00%
Michael Holzheu1137.93%150.00%
Total29100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Greg Kroah-Hartman2548.08%133.33%
Michael Holzheu2446.15%133.33%
Paul 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.
Created with cregit.