patch-2.6.6-vs1.9.0
[linux-2.6.git] / include / linux / namespace.h
1 #ifndef _NAMESPACE_H_
2 #define _NAMESPACE_H_
3 #ifdef __KERNEL__
4
5 #include <linux/mount.h>
6 #include <linux/sched.h>
7
8 struct namespace {
9         atomic_t                count;
10         struct vfsmount *       root;
11         struct list_head        list;
12         struct rw_semaphore     sem;
13 };
14
15 extern void umount_tree(struct vfsmount *);
16 extern void umount_unused(struct vfsmount *, struct fs_struct *);
17 extern int copy_namespace(int, struct task_struct *);
18 void __put_namespace(struct namespace *namespace);
19
20 static inline void put_namespace(struct namespace *namespace)
21 {
22         if (atomic_dec_and_test(&namespace->count))
23                 __put_namespace(namespace);
24 }
25
26 static inline void exit_namespace(struct task_struct *p)
27 {
28         struct namespace *namespace = p->namespace;
29         if (namespace) {
30                 task_lock(p);
31                 p->namespace = NULL;
32                 task_unlock(p);
33                 put_namespace(namespace);
34         }
35 }
36
37 static inline void get_namespace(struct namespace *namespace)
38 {
39         atomic_inc(&namespace->count);
40 }
41
42 #endif
43 #endif