Files
linux-apfs/include/linux/fs_struct.h
T

29 lines
660 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINUX_FS_STRUCT_H
#define _LINUX_FS_STRUCT_H
2008-02-14 19:34:38 -08:00
#include <linux/path.h>
2005-04-16 15:20:36 -07:00
struct fs_struct {
atomic_t count;
rwlock_t lock;
int umask;
2008-02-14 19:34:38 -08:00
struct path root, pwd, altroot;
2005-04-16 15:20:36 -07:00
};
#define INIT_FS { \
.count = ATOMIC_INIT(1), \
.lock = RW_LOCK_UNLOCKED, \
.umask = 0022, \
}
2006-12-06 20:32:54 -08:00
extern struct kmem_cache *fs_cachep;
2005-04-16 15:20:36 -07:00
extern void exit_fs(struct task_struct *);
extern void set_fs_altroot(void);
2008-02-14 19:34:39 -08:00
extern void set_fs_root(struct fs_struct *, struct path *);
extern void set_fs_pwd(struct fs_struct *, struct path *);
2005-04-16 15:20:36 -07:00
extern struct fs_struct *copy_fs_struct(struct fs_struct *);
extern void put_fs_struct(struct fs_struct *);
#endif /* _LINUX_FS_STRUCT_H */