namespace.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _NAMESPACE_H_
  2. #define _NAMESPACE_H_
  3. #ifdef __KERNEL__
  4. #include <linux/mount.h>
  5. #include <linux/sched.h>
  6. struct namespace {
  7. atomic_t count;
  8. struct vfsmount * root;
  9. struct list_head list;
  10. struct rw_semaphore sem;
  11. };
  12. extern int copy_namespace(int, struct task_struct *);
  13. extern void __put_namespace(struct namespace *namespace);
  14. static inline void put_namespace(struct namespace *namespace)
  15. {
  16. if (atomic_dec_and_lock(&namespace->count, &vfsmount_lock))
  17. /* releases vfsmount_lock */
  18. __put_namespace(namespace);
  19. }
  20. static inline void exit_namespace(struct task_struct *p)
  21. {
  22. struct namespace *namespace = p->namespace;
  23. if (namespace) {
  24. task_lock(p);
  25. p->namespace = NULL;
  26. task_unlock(p);
  27. put_namespace(namespace);
  28. }
  29. }
  30. static inline void get_namespace(struct namespace *namespace)
  31. {
  32. atomic_inc(&namespace->count);
  33. }
  34. #endif
  35. #endif