2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* sysfs.h - definitions for the device driver filesystem
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001,2002 Patrick Mochel
|
|
|
|
* Copyright (c) 2004 Silicon Graphics, Inc.
|
2007-09-20 12:31:38 +04:00
|
|
|
* Copyright (c) 2007 SUSE Linux Products GmbH
|
|
|
|
* Copyright (c) 2007 Tejun Heo <teheo@suse.de>
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* Please see Documentation/filesystems/sysfs.txt for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYSFS_H_
|
|
|
|
#define _SYSFS_H_
|
|
|
|
|
2006-08-15 09:43:17 +04:00
|
|
|
#include <linux/compiler.h>
|
2007-03-18 15:58:08 +03:00
|
|
|
#include <linux/errno.h>
|
2007-01-17 19:51:18 +03:00
|
|
|
#include <linux/list.h>
|
2010-02-12 02:21:53 +03:00
|
|
|
#include <linux/lockdep.h>
|
2010-08-11 18:01:02 +04:00
|
|
|
#include <linux/kobject_ns.h>
|
2013-07-15 03:05:59 +04:00
|
|
|
#include <linux/stat.h>
|
2011-07-27 03:09:06 +04:00
|
|
|
#include <linux/atomic.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
struct kobject;
|
|
|
|
struct module;
|
2013-07-15 03:05:55 +04:00
|
|
|
struct bin_attribute;
|
2010-03-30 22:31:26 +04:00
|
|
|
enum kobj_ns_type;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
struct attribute {
|
2007-09-20 11:05:10 +04:00
|
|
|
const char *name;
|
2011-07-24 07:10:46 +04:00
|
|
|
umode_t mode;
|
2010-02-12 02:21:53 +03:00
|
|
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
2012-05-14 21:30:03 +04:00
|
|
|
bool ignore_lockdep:1;
|
2010-02-12 02:21:53 +03:00
|
|
|
struct lock_class_key *key;
|
|
|
|
struct lock_class_key skey;
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2010-02-12 15:35:32 +03:00
|
|
|
/**
|
|
|
|
* sysfs_attr_init - initialize a dynamically allocated sysfs attribute
|
|
|
|
* @attr: struct attribute to initialize
|
|
|
|
*
|
|
|
|
* Initialize a dynamically allocated struct attribute so we can
|
|
|
|
* make lockdep happy. This is a new requirement for attributes
|
|
|
|
* and initially this is only needed when lockdep is enabled.
|
|
|
|
* Lockdep gives a nice error when your attribute is added to
|
|
|
|
* sysfs if you don't have this.
|
|
|
|
*/
|
2010-02-12 02:21:53 +03:00
|
|
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
|
|
|
#define sysfs_attr_init(attr) \
|
|
|
|
do { \
|
|
|
|
static struct lock_class_key __key; \
|
|
|
|
\
|
|
|
|
(attr)->key = &__key; \
|
2013-08-22 04:47:05 +04:00
|
|
|
} while (0)
|
2010-02-12 02:21:53 +03:00
|
|
|
#else
|
2013-08-22 04:47:05 +04:00
|
|
|
#define sysfs_attr_init(attr) do {} while (0)
|
2010-02-12 02:21:53 +03:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
struct attribute_group {
|
2007-09-20 11:05:10 +04:00
|
|
|
const char *name;
|
2011-07-24 07:11:19 +04:00
|
|
|
umode_t (*is_visible)(struct kobject *,
|
2007-10-31 17:38:04 +03:00
|
|
|
struct attribute *, int);
|
2007-09-20 11:05:10 +04:00
|
|
|
struct attribute **attrs;
|
2013-07-15 03:05:55 +04:00
|
|
|
struct bin_attribute **bin_attrs;
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use these macros to make defining attributes easier. See include/linux/device.h
|
|
|
|
* for examples..
|
|
|
|
*/
|
|
|
|
|
2013-08-22 04:47:05 +04:00
|
|
|
#define __ATTR(_name, _mode, _show, _store) { \
|
2013-07-15 03:06:00 +04:00
|
|
|
.attr = {.name = __stringify(_name), .mode = _mode }, \
|
|
|
|
.show = _show, \
|
|
|
|
.store = _store, \
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2013-07-15 03:06:00 +04:00
|
|
|
#define __ATTR_RO(_name) { \
|
|
|
|
.attr = { .name = __stringify(_name), .mode = S_IRUGO }, \
|
|
|
|
.show = _name##_show, \
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2013-08-24 02:02:01 +04:00
|
|
|
#define __ATTR_WO(_name) { \
|
|
|
|
.attr = { .name = __stringify(_name), .mode = S_IWUSR }, \
|
|
|
|
.store = _name##_store, \
|
|
|
|
}
|
|
|
|
|
2013-07-15 03:06:00 +04:00
|
|
|
#define __ATTR_RW(_name) __ATTR(_name, (S_IWUSR | S_IRUGO), \
|
|
|
|
_name##_show, _name##_store)
|
2013-07-15 03:05:51 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#define __ATTR_NULL { .attr = { .name = NULL } }
|
2012-05-14 21:30:03 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
|
|
|
#define __ATTR_IGNORE_LOCKDEP(_name, _mode, _show, _store) { \
|
|
|
|
.attr = {.name = __stringify(_name), .mode = _mode, \
|
|
|
|
.ignore_lockdep = true }, \
|
|
|
|
.show = _show, \
|
|
|
|
.store = _store, \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define __ATTR_IGNORE_LOCKDEP __ATTR
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2013-07-15 03:05:59 +04:00
|
|
|
#define __ATTRIBUTE_GROUPS(_name) \
|
|
|
|
static const struct attribute_group *_name##_groups[] = { \
|
|
|
|
&_name##_group, \
|
2013-07-15 03:05:52 +04:00
|
|
|
NULL, \
|
|
|
|
}
|
|
|
|
|
2013-07-15 03:05:59 +04:00
|
|
|
#define ATTRIBUTE_GROUPS(_name) \
|
|
|
|
static const struct attribute_group _name##_group = { \
|
|
|
|
.attrs = _name##_attrs, \
|
|
|
|
}; \
|
|
|
|
__ATTRIBUTE_GROUPS(_name)
|
|
|
|
|
2010-05-13 05:28:57 +04:00
|
|
|
struct file;
|
2005-04-17 02:20:36 +04:00
|
|
|
struct vm_area_struct;
|
|
|
|
|
|
|
|
struct bin_attribute {
|
|
|
|
struct attribute attr;
|
|
|
|
size_t size;
|
|
|
|
void *private;
|
2010-05-13 05:28:57 +04:00
|
|
|
ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *,
|
2007-06-09 09:57:22 +04:00
|
|
|
char *, loff_t, size_t);
|
2013-08-22 04:47:05 +04:00
|
|
|
ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *,
|
2007-06-09 09:57:22 +04:00
|
|
|
char *, loff_t, size_t);
|
2010-05-13 05:28:57 +04:00
|
|
|
int (*mmap)(struct file *, struct kobject *, struct bin_attribute *attr,
|
2005-04-17 02:20:36 +04:00
|
|
|
struct vm_area_struct *vma);
|
|
|
|
};
|
|
|
|
|
2010-02-12 15:35:32 +03:00
|
|
|
/**
|
|
|
|
* sysfs_bin_attr_init - initialize a dynamically allocated bin_attribute
|
|
|
|
* @attr: struct bin_attribute to initialize
|
|
|
|
*
|
|
|
|
* Initialize a dynamically allocated struct bin_attribute so we
|
|
|
|
* can make lockdep happy. This is a new requirement for
|
|
|
|
* attributes and initially this is only needed when lockdep is
|
|
|
|
* enabled. Lockdep gives a nice error when your attribute is
|
|
|
|
* added to sysfs if you don't have this.
|
|
|
|
*/
|
2010-03-01 12:38:36 +03:00
|
|
|
#define sysfs_bin_attr_init(bin_attr) sysfs_attr_init(&(bin_attr)->attr)
|
2010-02-12 02:21:53 +03:00
|
|
|
|
2013-07-15 03:05:59 +04:00
|
|
|
/* macros to create static binary attributes easier */
|
|
|
|
#define __BIN_ATTR(_name, _mode, _read, _write, _size) { \
|
|
|
|
.attr = { .name = __stringify(_name), .mode = _mode }, \
|
|
|
|
.read = _read, \
|
|
|
|
.write = _write, \
|
|
|
|
.size = _size, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define __BIN_ATTR_RO(_name, _size) { \
|
|
|
|
.attr = { .name = __stringify(_name), .mode = S_IRUGO }, \
|
|
|
|
.read = _name##_read, \
|
|
|
|
.size = _size, \
|
2013-07-15 03:05:53 +04:00
|
|
|
}
|
|
|
|
|
2013-07-15 03:05:59 +04:00
|
|
|
#define __BIN_ATTR_RW(_name, _size) __BIN_ATTR(_name, \
|
|
|
|
(S_IWUSR | S_IRUGO), _name##_read, \
|
2013-08-21 03:48:54 +04:00
|
|
|
_name##_write, _size)
|
2013-07-15 03:05:59 +04:00
|
|
|
|
|
|
|
#define __BIN_ATTR_NULL __ATTR_NULL
|
|
|
|
|
|
|
|
#define BIN_ATTR(_name, _mode, _read, _write, _size) \
|
|
|
|
struct bin_attribute bin_attr_##_name = __BIN_ATTR(_name, _mode, _read, \
|
|
|
|
_write, _size)
|
|
|
|
|
|
|
|
#define BIN_ATTR_RO(_name, _size) \
|
|
|
|
struct bin_attribute bin_attr_##_name = __BIN_ATTR_RO(_name, _size)
|
|
|
|
|
|
|
|
#define BIN_ATTR_RW(_name, _size) \
|
|
|
|
struct bin_attribute bin_attr_##_name = __BIN_ATTR_RW(_name, _size)
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
struct sysfs_ops {
|
2013-08-22 04:47:05 +04:00
|
|
|
ssize_t (*show)(struct kobject *, struct attribute *, char *);
|
|
|
|
ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t);
|
2011-10-13 01:53:38 +04:00
|
|
|
const void *(*namespace)(struct kobject *, const struct attribute *);
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2008-07-16 02:58:04 +04:00
|
|
|
struct sysfs_dirent;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
int sysfs_schedule_callback(struct kobject *kobj, void (*func)(void *),
|
|
|
|
void *data, struct module *owner);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
int __must_check sysfs_create_dir(struct kobject *kobj);
|
|
|
|
void sysfs_remove_dir(struct kobject *kobj);
|
|
|
|
int __must_check sysfs_rename_dir(struct kobject *kobj, const char *new_name);
|
|
|
|
int __must_check sysfs_move_dir(struct kobject *kobj,
|
|
|
|
struct kobject *new_parent_kobj);
|
2005-04-19 08:57:32 +04:00
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
int __must_check sysfs_create_file(struct kobject *kobj,
|
|
|
|
const struct attribute *attr);
|
2010-01-05 14:48:01 +03:00
|
|
|
int __must_check sysfs_create_files(struct kobject *kobj,
|
|
|
|
const struct attribute **attr);
|
2010-07-02 18:54:05 +04:00
|
|
|
int __must_check sysfs_chmod_file(struct kobject *kobj,
|
2011-07-24 11:40:40 +04:00
|
|
|
const struct attribute *attr, umode_t mode);
|
2007-09-20 11:05:10 +04:00
|
|
|
void sysfs_remove_file(struct kobject *kobj, const struct attribute *attr);
|
2010-01-05 14:48:01 +03:00
|
|
|
void sysfs_remove_files(struct kobject *kobj, const struct attribute **attr);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2006-08-15 09:43:17 +04:00
|
|
|
int __must_check sysfs_create_bin_file(struct kobject *kobj,
|
2009-12-18 16:34:20 +03:00
|
|
|
const struct bin_attribute *attr);
|
|
|
|
void sysfs_remove_bin_file(struct kobject *kobj,
|
|
|
|
const struct bin_attribute *attr);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target,
|
|
|
|
const char *name);
|
2008-06-10 13:09:08 +04:00
|
|
|
int __must_check sysfs_create_link_nowarn(struct kobject *kobj,
|
|
|
|
struct kobject *target,
|
|
|
|
const char *name);
|
2007-09-20 11:05:10 +04:00
|
|
|
void sysfs_remove_link(struct kobject *kobj, const char *name);
|
|
|
|
|
2010-02-13 06:22:25 +03:00
|
|
|
int sysfs_rename_link(struct kobject *kobj, struct kobject *target,
|
|
|
|
const char *old_name, const char *new_name);
|
|
|
|
|
2010-03-30 22:31:28 +04:00
|
|
|
void sysfs_delete_link(struct kobject *dir, struct kobject *targ,
|
|
|
|
const char *name);
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
int __must_check sysfs_create_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp);
|
2013-08-22 00:47:50 +04:00
|
|
|
int __must_check sysfs_create_groups(struct kobject *kobj,
|
|
|
|
const struct attribute_group **groups);
|
2008-03-21 04:47:52 +03:00
|
|
|
int sysfs_update_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp);
|
2007-09-20 11:05:10 +04:00
|
|
|
void sysfs_remove_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp);
|
2013-08-22 00:47:50 +04:00
|
|
|
void sysfs_remove_groups(struct kobject *kobj,
|
|
|
|
const struct attribute_group **groups);
|
2007-02-20 23:02:44 +03:00
|
|
|
int sysfs_add_file_to_group(struct kobject *kobj,
|
2007-09-20 11:05:10 +04:00
|
|
|
const struct attribute *attr, const char *group);
|
2007-02-20 23:02:44 +03:00
|
|
|
void sysfs_remove_file_from_group(struct kobject *kobj,
|
2007-09-20 11:05:10 +04:00
|
|
|
const struct attribute *attr, const char *group);
|
2010-09-26 01:34:22 +04:00
|
|
|
int sysfs_merge_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp);
|
|
|
|
void sysfs_unmerge_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp);
|
2013-01-26 00:51:13 +04:00
|
|
|
int sysfs_add_link_to_group(struct kobject *kobj, const char *group_name,
|
|
|
|
struct kobject *target, const char *link_name);
|
|
|
|
void sysfs_remove_link_from_group(struct kobject *kobj, const char *group_name,
|
|
|
|
const char *link_name);
|
2007-02-20 23:02:44 +03:00
|
|
|
|
2008-09-26 03:45:13 +04:00
|
|
|
void sysfs_notify(struct kobject *kobj, const char *dir, const char *attr);
|
2008-07-16 02:58:04 +04:00
|
|
|
void sysfs_notify_dirent(struct sysfs_dirent *sd);
|
|
|
|
struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
|
2010-03-30 22:31:26 +04:00
|
|
|
const void *ns,
|
2008-07-16 02:58:04 +04:00
|
|
|
const unsigned char *name);
|
|
|
|
struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd);
|
|
|
|
void sysfs_put(struct sysfs_dirent *sd);
|
2010-03-30 22:31:26 +04:00
|
|
|
|
2008-07-16 02:58:04 +04:00
|
|
|
int __must_check sysfs_init(void);
|
2006-08-15 09:43:23 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#else /* CONFIG_SYSFS */
|
|
|
|
|
2007-03-15 22:50:34 +03:00
|
|
|
static inline int sysfs_schedule_callback(struct kobject *kobj,
|
2007-04-26 11:12:04 +04:00
|
|
|
void (*func)(void *), void *data, struct module *owner)
|
2007-03-15 22:50:34 +03:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_create_dir(struct kobject *kobj)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline void sysfs_remove_dir(struct kobject *kobj)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_rename_dir(struct kobject *kobj, const char *new_name)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2008-07-04 05:05:28 +04:00
|
|
|
return 0;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_move_dir(struct kobject *kobj,
|
|
|
|
struct kobject *new_parent_kobj)
|
2006-11-20 19:07:51 +03:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_create_file(struct kobject *kobj,
|
|
|
|
const struct attribute *attr)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-05 14:48:01 +03:00
|
|
|
static inline int sysfs_create_files(struct kobject *kobj,
|
|
|
|
const struct attribute **attr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_chmod_file(struct kobject *kobj,
|
2011-07-24 11:40:40 +04:00
|
|
|
const struct attribute *attr, umode_t mode)
|
2005-04-19 08:57:32 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline void sysfs_remove_file(struct kobject *kobj,
|
|
|
|
const struct attribute *attr)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-05 14:48:01 +03:00
|
|
|
static inline void sysfs_remove_files(struct kobject *kobj,
|
|
|
|
const struct attribute **attr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_create_bin_file(struct kobject *kobj,
|
2009-12-18 16:34:20 +03:00
|
|
|
const struct bin_attribute *attr)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-20 04:39:02 +03:00
|
|
|
static inline void sysfs_remove_bin_file(struct kobject *kobj,
|
2009-12-18 16:34:20 +03:00
|
|
|
const struct bin_attribute *attr)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_create_link(struct kobject *kobj,
|
|
|
|
struct kobject *target, const char *name)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-10 13:09:08 +04:00
|
|
|
static inline int sysfs_create_link_nowarn(struct kobject *kobj,
|
|
|
|
struct kobject *target,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline void sysfs_remove_link(struct kobject *kobj, const char *name)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-02-13 06:22:25 +03:00
|
|
|
static inline int sysfs_rename_link(struct kobject *k, struct kobject *t,
|
|
|
|
const char *old_name, const char *new_name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-30 22:31:28 +04:00
|
|
|
static inline void sysfs_delete_link(struct kobject *k, struct kobject *t,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline int sysfs_create_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-28 04:24:49 +04:00
|
|
|
static inline int sysfs_create_groups(struct kobject *kobj,
|
|
|
|
const struct attribute_group **groups)
|
|
|
|
{
|
2013-08-28 20:51:41 +04:00
|
|
|
return 0;
|
2013-08-28 04:24:49 +04:00
|
|
|
}
|
|
|
|
|
2008-04-30 20:01:17 +04:00
|
|
|
static inline int sysfs_update_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-09-20 11:05:10 +04:00
|
|
|
static inline void sysfs_remove_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-08-28 04:24:49 +04:00
|
|
|
static inline void sysfs_remove_groups(struct kobject *kobj,
|
|
|
|
const struct attribute_group **groups)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-02-20 23:02:44 +03:00
|
|
|
static inline int sysfs_add_file_to_group(struct kobject *kobj,
|
|
|
|
const struct attribute *attr, const char *group)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_remove_file_from_group(struct kobject *kobj,
|
2007-03-01 15:40:21 +03:00
|
|
|
const struct attribute *attr, const char *group)
|
2007-02-20 23:02:44 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-26 01:34:22 +04:00
|
|
|
static inline int sysfs_merge_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_unmerge_group(struct kobject *kobj,
|
|
|
|
const struct attribute_group *grp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-01-26 00:51:13 +04:00
|
|
|
static inline int sysfs_add_link_to_group(struct kobject *kobj,
|
|
|
|
const char *group_name, struct kobject *target,
|
|
|
|
const char *link_name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void sysfs_remove_link_from_group(struct kobject *kobj,
|
|
|
|
const char *group_name, const char *link_name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-09-26 03:45:13 +04:00
|
|
|
static inline void sysfs_notify(struct kobject *kobj, const char *dir,
|
|
|
|
const char *attr)
|
2006-03-20 09:53:53 +03:00
|
|
|
{
|
|
|
|
}
|
2008-07-16 02:58:04 +04:00
|
|
|
static inline void sysfs_notify_dirent(struct sysfs_dirent *sd)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
static inline
|
|
|
|
struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
|
2010-03-30 22:31:26 +04:00
|
|
|
const void *ns,
|
2008-07-16 02:58:04 +04:00
|
|
|
const unsigned char *name)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
static inline struct sysfs_dirent *sysfs_get(struct sysfs_dirent *sd)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
static inline void sysfs_put(struct sysfs_dirent *sd)
|
|
|
|
{
|
|
|
|
}
|
2006-03-20 09:53:53 +03:00
|
|
|
|
2006-08-15 09:43:23 +04:00
|
|
|
static inline int __must_check sysfs_init(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* CONFIG_SYSFS */
|
|
|
|
|
|
|
|
#endif /* _SYSFS_H_ */
|