vserver 1.9.3
[linux-2.6.git] / include / linux / vs_cvirt.h
1 #ifndef _VX_VS_CVIRT_H
2 #define _VX_VS_CVIRT_H
3
4 #include "vserver/cvirt.h"
5 #include "vserver/debug.h"
6 #include "vs_base.h"
7
8
9 /* utsname virtualization */
10
11 static inline struct new_utsname *vx_new_utsname(void)
12 {
13         if (current->vx_info)
14                 return &current->vx_info->cvirt.utsname;
15         return &system_utsname;
16 }
17
18 #define vx_new_uts(x)           ((vx_new_utsname())->x)
19
20
21 /* pid faking stuff */
22
23
24 #define vx_info_map_pid(v,p) \
25         __vx_info_map_pid((v), (p), __FUNC__, __FILE__, __LINE__)
26 #define vx_map_pid(p)   vx_info_map_pid(current->vx_info, p)
27 #define vx_map_tgid(p) vx_map_pid(p)
28
29 static inline int __vx_info_map_pid(struct vx_info *vxi, int pid,
30         const char *func, const char *file, int line)
31 {
32         if (vx_info_flags(vxi, VXF_INFO_INIT, 0)) {
33                 vxfprintk(VXD_CBIT(cvirt, 2),
34                         "vx_map_tgid: %p/%llx: %d -> %d",
35                         vxi, (long long)vxi->vx_flags, pid,
36                         (pid && pid == vxi->vx_initpid)?1:pid,
37                         func, file, line);
38                 if (pid == 0)
39                         return 0;
40                 if (pid == vxi->vx_initpid)
41                         return 1;
42         }
43         return pid;
44 }
45
46 #define vx_info_rmap_pid(v,p) \
47         __vx_info_rmap_pid((v), (p), __FUNC__, __FILE__, __LINE__)
48 #define vx_rmap_pid(p)  vx_info_rmap_pid(current->vx_info, p)
49 #define vx_rmap_tgid(p) vx_rmap_pid(p)
50
51 static inline int __vx_info_rmap_pid(struct vx_info *vxi, int pid,
52         const char *func, const char *file, int line)
53 {
54         if (vx_info_flags(vxi, VXF_INFO_INIT, 0)) {
55                 vxfprintk(VXD_CBIT(cvirt, 2),
56                         "vx_rmap_tgid: %p/%llx: %d -> %d",
57                         vxi, (long long)vxi->vx_flags, pid,
58                         (pid == 1)?vxi->vx_initpid:pid,
59                         func, file, line);
60                 if ((pid == 1) && vxi->vx_initpid)
61                         return vxi->vx_initpid;
62                 if (pid == vxi->vx_initpid)
63                         return ~0U;
64         }
65         return pid;
66 }
67
68
69 static inline void vx_activate_task(struct task_struct *p)
70 {
71         struct vx_info *vxi;
72
73         // if ((vxi = task_get_vx_info(p))) {
74         if ((vxi = p->vx_info)) {
75                 vx_update_load(vxi);
76                 atomic_inc(&vxi->cvirt.nr_running);
77                 // put_vx_info(vxi);
78         }
79 }
80
81 static inline void vx_deactivate_task(struct task_struct *p)
82 {
83         struct vx_info *vxi;
84
85         // if ((vxi = task_get_vx_info(p))) {
86         if ((vxi = p->vx_info)) {
87                 vx_update_load(vxi);
88                 atomic_dec(&vxi->cvirt.nr_running);
89                 // put_vx_info(vxi);
90         }
91 }
92
93
94 #else
95 #warning duplicate inclusion
96 #endif