]> rtime.felk.cvut.cz Git - jailhouse.git/blob - driver/sysfs.h
jailhouse: configs: Change fiasco, novaboot and hpet config. Reserved memory layout...
[jailhouse.git] / driver / sysfs.h
1 /*
2  * Jailhouse, a Linux-based partitioning hypervisor
3  *
4  * Copyright (c) Siemens AG, 2014-2015
5  *
6  * Authors:
7  *  Jan Kiszka <jan.kiszka@siemens.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2.  See
10  * the COPYING file in the top-level directory.
11  */
12
13 #ifndef _JAILHOUSE_DRIVER_SYSFS_H
14 #define _JAILHOUSE_DRIVER_SYSFS_H
15
16 #include <linux/device.h>
17
18 int jailhouse_sysfs_cell_create(struct cell *cell, const char *name);
19 void jailhouse_sysfs_cell_register(struct cell *cell);
20 void jailhouse_sysfs_cell_delete(struct cell *cell);
21
22 int jailhouse_sysfs_init(struct device *dev);
23 void jailhouse_sysfs_exit(struct device *dev);
24
25 #endif /* !_JAILHOUSE_DRIVER_SYSFS_H */