sysfs.h (020abf03cd659388f94cb328e1e1df0656e0d7ff) | sysfs.h (a685e08987d1edf1995b76511d4c98ea0e905377) |
---|---|
1/* 2 * fs/sysfs/sysfs.h - sysfs internal header file 3 * 4 * Copyright (c) 2001-3 Patrick Mochel 5 * Copyright (c) 2007 SUSE Linux Products GmbH 6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de> 7 * 8 * This file is released under the GPLv2. --- 122 unchanged lines hidden (view full) --- 131 */ 132 133/* 134 * Each sb is associated with a set of namespace tags (i.e. 135 * the network namespace of the task which mounted this sysfs 136 * instance). 137 */ 138struct sysfs_super_info { | 1/* 2 * fs/sysfs/sysfs.h - sysfs internal header file 3 * 4 * Copyright (c) 2001-3 Patrick Mochel 5 * Copyright (c) 2007 SUSE Linux Products GmbH 6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de> 7 * 8 * This file is released under the GPLv2. --- 122 unchanged lines hidden (view full) --- 131 */ 132 133/* 134 * Each sb is associated with a set of namespace tags (i.e. 135 * the network namespace of the task which mounted this sysfs 136 * instance). 137 */ 138struct sysfs_super_info { |
139 const void *ns[KOBJ_NS_TYPES]; | 139 void *ns[KOBJ_NS_TYPES]; |
140}; 141#define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info)) 142extern struct sysfs_dirent sysfs_root; 143extern struct kmem_cache *sysfs_dir_cachep; 144 145/* 146 * dir.c 147 */ --- 84 unchanged lines hidden --- | 140}; 141#define sysfs_info(SB) ((struct sysfs_super_info *)(SB->s_fs_info)) 142extern struct sysfs_dirent sysfs_root; 143extern struct kmem_cache *sysfs_dir_cachep; 144 145/* 146 * dir.c 147 */ --- 84 unchanged lines hidden --- |