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

25 lines
598 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 {
2009-03-30 07:20:30 -04:00
int users;
2005-04-16 15:20:36 -07:00
rwlock_t lock;
int umask;
2009-03-30 07:20:30 -04:00
int in_exec;
2008-05-10 20:44:54 -04:00
struct path root, pwd;
2005-04-16 15:20:36 -07:00
};
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 *);
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 *);
2009-03-30 07:20:30 -04:00
extern void free_fs_struct(struct fs_struct *);
extern void daemonize_fs_struct(void);
extern int unshare_fs_struct(void);
2005-04-16 15:20:36 -07:00
#endif /* _LINUX_FS_STRUCT_H */