2005-04-17 02:20:36 +04:00
|
|
|
#ifndef _LINUX_FS_STRUCT_H
|
|
|
|
#define _LINUX_FS_STRUCT_H
|
|
|
|
|
2008-02-15 06:34:38 +03:00
|
|
|
#include <linux/path.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
struct fs_struct {
|
|
|
|
atomic_t count;
|
|
|
|
rwlock_t lock;
|
|
|
|
int umask;
|
2008-05-11 04:44:54 +04:00
|
|
|
struct path root, pwd;
|
2005-04-17 02:20:36 +04:00
|
|
|
};
|
|
|
|
|
2006-12-07 07:32:54 +03:00
|
|
|
extern struct kmem_cache *fs_cachep;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
extern void exit_fs(struct task_struct *);
|
2008-02-15 06:34:39 +03:00
|
|
|
extern void set_fs_root(struct fs_struct *, struct path *);
|
|
|
|
extern void set_fs_pwd(struct fs_struct *, struct path *);
|
2005-04-17 02:20:36 +04:00
|
|
|
extern struct fs_struct *copy_fs_struct(struct fs_struct *);
|
|
|
|
extern void put_fs_struct(struct fs_struct *);
|
|
|
|
|
|
|
|
#endif /* _LINUX_FS_STRUCT_H */
|