This commit was generated by cvs2svn to compensate for changes in r2826,
[util-vserver.git] / kernel / cvirt_def.h
1 #ifndef _VX_CVIRT_DEF_H
2 #define _VX_CVIRT_DEF_H
3
4 #include <linux/jiffies.h>
5 #include <linux/utsname.h>
6 #include <linux/spinlock.h>
7 #include <linux/wait.h>
8 #include <linux/time.h>
9 #include <asm/atomic.h>
10
11
12 struct _vx_usage_stat {
13         uint64_t user;
14         uint64_t nice;
15         uint64_t system;
16         uint64_t softirq;
17         uint64_t irq;
18         uint64_t idle;
19         uint64_t iowait;
20 };
21
22 struct _vx_syslog {
23         wait_queue_head_t log_wait;
24         spinlock_t logbuf_lock;         /* lock for the log buffer */
25
26         unsigned long log_start;        /* next char to be read by syslog() */
27         unsigned long con_start;        /* next char to be sent to consoles */
28         unsigned long log_end;          /* most-recently-written-char + 1 */
29         unsigned long logged_chars;     /* #chars since last read+clear operation */
30
31         char log_buf[1024];
32 };
33
34
35 /* context sub struct */
36
37 struct _vx_cvirt {
38         int max_threads;                /* maximum allowed threads */
39         atomic_t nr_threads;            /* number of current threads */
40         atomic_t nr_running;            /* number of running threads */
41         atomic_t nr_uninterruptible;    /* number of uninterruptible threads */
42
43         atomic_t nr_onhold;             /* processes on hold */
44         uint32_t onhold_last;           /* jiffies when put on hold */
45
46         struct timespec bias_idle;
47         struct timespec bias_uptime;    /* context creation point */
48         uint64_t bias_clock;            /* offset in clock_t */
49
50         struct new_utsname utsname;
51
52         spinlock_t load_lock;           /* lock for the load averages */
53         atomic_t load_updates;          /* nr of load updates done so far */
54         uint32_t load_last;             /* last time load was cacled */
55         uint32_t load[3];               /* load averages 1,5,15 */
56
57         atomic_t total_forks;           /* number of forks so far */
58
59         struct _vx_usage_stat cpustat[NR_CPUS];
60
61         struct _vx_syslog syslog;
62 };
63
64 struct _vx_sock_acc {
65         atomic_t count;
66         atomic_t total;
67 };
68
69 /* context sub struct */
70
71 struct _vx_cacct {
72         unsigned long total_forks;
73
74         struct _vx_sock_acc sock[5][3];
75 };
76
77 #endif  /* _VX_CVIRT_DEF_H */