- patches.rt/0001-sched-count-of-queued-RT-tasks.patch: Delete.
[linux-flexiantxendom0-3.2.10.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 struct hyp_sysfs_attr {
24         struct attribute attr;
25         ssize_t (*show)(struct hyp_sysfs_attr *, char *);
26         ssize_t (*store)(struct hyp_sysfs_attr *, const char *, size_t);
27         void *hyp_attr_data;
28 };
29
30 #endif /* _HYP_SYSFS_H_ */