2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _LINUX_FS_STRUCT_H
|
|
|
|
#define _LINUX_FS_STRUCT_H
|
|
|
|
|
2008-02-14 20:34:38 -07:00
|
|
|
#include <linux/path.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
struct fs_struct {
|
2009-03-30 05:20:30 -06:00
|
|
|
int users;
|
2005-04-16 16:20:36 -06:00
|
|
|
rwlock_t lock;
|
|
|
|
int umask;
|
2009-03-30 05:20:30 -06:00
|
|
|
int in_exec;
|
2008-05-10 18:44:54 -06:00
|
|
|
struct path root, pwd;
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
2006-12-06 21:32:54 -07:00
|
|
|
extern struct kmem_cache *fs_cachep;
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
extern void exit_fs(struct task_struct *);
|
2008-02-14 20:34:39 -07:00
|
|
|
extern void set_fs_root(struct fs_struct *, struct path *);
|
|
|
|
extern void set_fs_pwd(struct fs_struct *, struct path *);
|
2005-04-16 16:20:36 -06:00
|
|
|
extern struct fs_struct *copy_fs_struct(struct fs_struct *);
|
2009-03-30 05:20:30 -06:00
|
|
|
extern void free_fs_struct(struct fs_struct *);
|
2009-03-29 17:00:13 -06:00
|
|
|
extern void daemonize_fs_struct(void);
|
|
|
|
extern int unshare_fs_struct(void);
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
#endif /* _LINUX_FS_STRUCT_H */
|