This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / xen / hypervisor_sysfs.h
1 /*
2  *  copyright (c) 2006 IBM Corporation
3  *  Authored by: Mike D. Day <ncmike@us.ibm.com>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License version 2 as
7  *  published by the Free Software Foundation.
8  */
9
10 #ifndef _HYP_SYSFS_H_
11 #define _HYP_SYSFS_H_
12
13 #include <linux/kobject.h>
14 #include <linux/sysfs.h>
15
16 #define HYPERVISOR_ATTR_RO(_name) \
17 static struct hyp_sysfs_attr  _name##_attr = __ATTR_RO(_name)
18
19 #define HYPERVISOR_ATTR_RW(_name) \
20 static struct hyp_sysfs_attr _name##_attr = \
21         __ATTR(_name, 0644, _name##_show, _name##_store)
22
23 extern struct subsystem hypervisor_subsys;
24
25 struct hyp_sysfs_attr {
26         struct attribute attr;
27         ssize_t (*show)(struct hyp_sysfs_attr *, char *);
28         ssize_t (*store)(struct hyp_sysfs_attr *, const char *, size_t);
29         void *hyp_attr_data;
30 };
31
32 #endif /* _HYP_SYSFS_H_ */