This commit was manufactured by cvs2svn to create tag 'before-xenU'.
[linux-2.6.git] / fs / proc / proc_misc.c
index ab18d95..6264575 100644 (file)
 #include <linux/jiffies.h>
 #include <linux/sysrq.h>
 #include <linux/vmalloc.h>
+#include <linux/crash_dump.h>
+#include <linux/vs_base.h>
+#include <linux/vs_cvirt.h>
+
 #include <asm/uaccess.h>
 #include <asm/pgtable.h>
 #include <asm/io.h>
 #include <asm/tlb.h>
 #include <asm/div64.h>
+#include "internal.h"
+
+#include <linux/vs_cvirt.h>
 
 #define LOAD_INT(x) ((x) >> FSHIFT)
 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
@@ -61,7 +68,6 @@
 extern int get_hardware_list(char *);
 extern int get_stram_list(char *);
 extern int get_chrdev_list(char *);
-extern int get_blkdev_list(char *);
 extern int get_filesystem_list(char *);
 extern int get_exec_domain_list(char *);
 extern int get_dma_list(char *);
@@ -81,53 +87,33 @@ static int proc_calc_metrics(char *page, char **start, off_t off,
 static int loadavg_read_proc(char *page, char **start, off_t off,
                                 int count, int *eof, void *data)
 {
+       unsigned int running, threads;
        int a, b, c;
        int len;
 
-       a = avenrun[0] + (FIXED_1/200);
-       b = avenrun[1] + (FIXED_1/200);
-       c = avenrun[2] + (FIXED_1/200);
-       len = sprintf(page,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
-               LOAD_INT(a), LOAD_FRAC(a),
-               LOAD_INT(b), LOAD_FRAC(b),
-               LOAD_INT(c), LOAD_FRAC(c),
-               nr_running(), nr_threads, last_pid);
-       return proc_calc_metrics(page, start, off, count, eof, len);
-}
-
-struct vmalloc_info {
-       unsigned long used;
-       unsigned long largest_chunk;
-};
-
-static struct vmalloc_info get_vmalloc_info(void)
-{
-       unsigned long prev_end = VMALLOC_START;
-       struct vm_struct* vma;
-       struct vmalloc_info vmi;
-       vmi.used = 0;
-
-       read_lock(&vmlist_lock);
+       if (vx_flags(VXF_VIRT_LOAD, 0)) {
+               struct vx_info *vxi = current->vx_info;
 
-       if(!vmlist)
-               vmi.largest_chunk = (VMALLOC_END-VMALLOC_START);
-       else
-               vmi.largest_chunk = 0;
+               a = vxi->cvirt.load[0] + (FIXED_1/200);
+               b = vxi->cvirt.load[1] + (FIXED_1/200);
+               c = vxi->cvirt.load[2] + (FIXED_1/200);
 
-       for (vma = vmlist; vma; vma = vma->next) {
-               unsigned long free_area_size =
-                       (unsigned long)vma->addr - prev_end;
-               vmi.used += vma->size;
-               if (vmi.largest_chunk < free_area_size )
+               running = atomic_read(&vxi->cvirt.nr_running);
+               threads = atomic_read(&vxi->cvirt.nr_threads);
+       } else {
+               a = avenrun[0] + (FIXED_1/200);
+               b = avenrun[1] + (FIXED_1/200);
+               c = avenrun[2] + (FIXED_1/200);
 
-                       vmi.largest_chunk = free_area_size;
-               prev_end = vma->size + (unsigned long)vma->addr;
+               running = nr_running();
+               threads = nr_threads;
        }
-       if(VMALLOC_END-prev_end > vmi.largest_chunk)
-               vmi.largest_chunk = VMALLOC_END-prev_end;
-
-       read_unlock(&vmlist_lock);
-       return vmi;
+       len = sprintf(page,"%d.%02d %d.%02d %d.%02d %d/%d %d\n",
+               LOAD_INT(a), LOAD_FRAC(a),
+               LOAD_INT(b), LOAD_FRAC(b),
+               LOAD_INT(c), LOAD_FRAC(c),
+               running, threads, last_pid);
+       return proc_calc_metrics(page, start, off, count, eof, len);
 }
 
 static int uptime_read_proc(char *page, char **start, off_t off,
@@ -136,10 +122,13 @@ static int uptime_read_proc(char *page, char **start, off_t off,
        struct timespec uptime;
        struct timespec idle;
        int len;
-       u64 idle_jiffies = init_task.utime + init_task.stime;
+       cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
 
        do_posix_clock_monotonic_gettime(&uptime);
-       jiffies_to_timespec(idle_jiffies, &idle);
+       cputime_to_timespec(idletime, &idle);
+       if (vx_flags(VXF_VIRT_UPTIME, 0))
+               vx_vsi_uptime(&uptime, &idle);
+
        len = sprintf(page,"%lu.%02lu %lu.%02lu\n",
                        (unsigned long) uptime.tv_sec,
                        (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
@@ -158,10 +147,10 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
        unsigned long inactive;
        unsigned long active;
        unsigned long free;
-       unsigned long vmtot;
        unsigned long committed;
        unsigned long allowed;
        struct vmalloc_info vmi;
+       long cached;
 
        get_page_state(&ps);
        get_zone_counts(&active, &inactive, &free);
@@ -176,10 +165,11 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
        allowed = ((totalram_pages - hugetlb_total_pages())
                * sysctl_overcommit_ratio / 100) + total_swap_pages;
 
-       vmtot = (VMALLOC_END-VMALLOC_START)>>10;
-       vmi = get_vmalloc_info();
-       vmi.used >>= 10;
-       vmi.largest_chunk >>= 10;
+       cached = get_page_cache_size() - total_swapcache_pages - i.bufferram;
+       if (cached < 0)
+               cached = 0;
+
+       get_vmalloc_info(&vmi);
 
        /*
         * Tagged format, for easy grepping and expansion.
@@ -211,7 +201,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
                K(i.totalram),
                K(i.freeram),
                K(i.bufferram),
-               K(get_page_cache_size()-total_swapcache_pages-i.bufferram),
+               K(cached),
                K(total_swapcache_pages),
                K(active),
                K(inactive),
@@ -228,9 +218,9 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
                K(allowed),
                K(committed),
                K(ps.nr_page_table_pages),
-               vmtot,
-               vmi.used,
-               vmi.largest_chunk
+               (unsigned long)VMALLOC_TOTAL >> 10,
+               vmi.used >> 10,
+               vmi.largest_chunk >> 10
                );
 
                len += hugetlb_report_meminfo(page + len);
@@ -256,11 +246,11 @@ static struct file_operations fragmentation_file_operations = {
 static int version_read_proc(char *page, char **start, off_t off,
                                 int count, int *eof, void *data)
 {
-       extern char *linux_banner;
        int len;
 
-       strcpy(page, linux_banner);
-       len = strlen(page);
+       len = sprintf(page, vx_linux_banner,
+               vx_new_uts(release),
+               vx_new_uts(version));
        return proc_calc_metrics(page, start, off, count, eof, len);
 }
 
@@ -358,14 +348,15 @@ static struct file_operations proc_slabinfo_operations = {
        .release        = seq_release,
 };
 
-int show_stat(struct seq_file *p, void *v)
+static int show_stat(struct seq_file *p, void *v)
 {
        int i;
-       extern unsigned long total_forks;
        unsigned long jif;
-       u64     sum = 0, user = 0, nice = 0, system = 0,
-               idle = 0, iowait = 0, irq = 0, softirq = 0;
+       cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
+       u64 sum = 0;
 
+       user = nice = system = idle = iowait =
+               irq = softirq = steal = cputime64_zero;
        jif = - wall_to_monotonic.tv_sec;
        if (wall_to_monotonic.tv_nsec)
                --jif;
@@ -373,25 +364,27 @@ int show_stat(struct seq_file *p, void *v)
        for_each_cpu(i) {
                int j;
 
-               user += kstat_cpu(i).cpustat.user;
-               nice += kstat_cpu(i).cpustat.nice;
-               system += kstat_cpu(i).cpustat.system;
-               idle += kstat_cpu(i).cpustat.idle;
-               iowait += kstat_cpu(i).cpustat.iowait;
-               irq += kstat_cpu(i).cpustat.irq;
-               softirq += kstat_cpu(i).cpustat.softirq;
+               user = cputime64_add(user, kstat_cpu(i).cpustat.user);
+               nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
+               system = cputime64_add(system, kstat_cpu(i).cpustat.system);
+               idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
+               iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
+               irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
+               softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
+               steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
                for (j = 0 ; j < NR_IRQS ; j++)
                        sum += kstat_cpu(i).irqs[j];
        }
 
-       seq_printf(p, "cpu  %llu %llu %llu %llu %llu %llu %llu\n",
-               (unsigned long long)jiffies_64_to_clock_t(user),
-               (unsigned long long)jiffies_64_to_clock_t(nice),
-               (unsigned long long)jiffies_64_to_clock_t(system),
-               (unsigned long long)jiffies_64_to_clock_t(idle),
-               (unsigned long long)jiffies_64_to_clock_t(iowait),
-               (unsigned long long)jiffies_64_to_clock_t(irq),
-               (unsigned long long)jiffies_64_to_clock_t(softirq));
+       seq_printf(p, "cpu  %llu %llu %llu %llu %llu %llu %llu %llu\n",
+               (unsigned long long)cputime64_to_clock_t(user),
+               (unsigned long long)cputime64_to_clock_t(nice),
+               (unsigned long long)cputime64_to_clock_t(system),
+               (unsigned long long)cputime64_to_clock_t(idle),
+               (unsigned long long)cputime64_to_clock_t(iowait),
+               (unsigned long long)cputime64_to_clock_t(irq),
+               (unsigned long long)cputime64_to_clock_t(softirq),
+               (unsigned long long)cputime64_to_clock_t(steal));
        for_each_online_cpu(i) {
 
                /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
@@ -402,15 +395,17 @@ int show_stat(struct seq_file *p, void *v)
                iowait = kstat_cpu(i).cpustat.iowait;
                irq = kstat_cpu(i).cpustat.irq;
                softirq = kstat_cpu(i).cpustat.softirq;
-               seq_printf(p, "cpu%d %llu %llu %llu %llu %llu %llu %llu\n",
+               steal = kstat_cpu(i).cpustat.steal;
+               seq_printf(p, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu\n",
                        i,
-                       (unsigned long long)jiffies_64_to_clock_t(user),
-                       (unsigned long long)jiffies_64_to_clock_t(nice),
-                       (unsigned long long)jiffies_64_to_clock_t(system),
-                       (unsigned long long)jiffies_64_to_clock_t(idle),
-                       (unsigned long long)jiffies_64_to_clock_t(iowait),
-                       (unsigned long long)jiffies_64_to_clock_t(irq),
-                       (unsigned long long)jiffies_64_to_clock_t(softirq));
+                       (unsigned long long)cputime64_to_clock_t(user),
+                       (unsigned long long)cputime64_to_clock_t(nice),
+                       (unsigned long long)cputime64_to_clock_t(system),
+                       (unsigned long long)cputime64_to_clock_t(idle),
+                       (unsigned long long)cputime64_to_clock_t(iowait),
+                       (unsigned long long)cputime64_to_clock_t(irq),
+                       (unsigned long long)cputime64_to_clock_t(softirq),
+                       (unsigned long long)cputime64_to_clock_t(steal));
        }
        seq_printf(p, "intr %llu", (unsigned long long)sum);
 
@@ -502,7 +497,7 @@ static struct seq_operations int_seq_ops = {
        .show  = show_interrupts
 };
 
-int interrupts_open(struct inode *inode, struct file *filp)
+static int interrupts_open(struct inode *inode, struct file *filp)
 {
        return seq_open(filp, &int_seq_ops);
 }
@@ -559,7 +554,7 @@ static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
 
                if (get_user(c, buf))
                        return -EFAULT;
-               __handle_sysrq(c, NULL, NULL);
+               __handle_sysrq(c, NULL, NULL, 0);
        }
        return count;
 }
@@ -571,7 +566,7 @@ static struct file_operations proc_sysrq_trigger_operations = {
 
 struct proc_dir_entry *proc_root_kcore;
 
-static void create_seq_entry(char *name, mode_t mode, struct file_operations *f)
+void create_seq_entry(char *name, mode_t mode, struct file_operations *f)
 {
        struct proc_dir_entry *entry;
        entry = create_proc_entry(name, mode, NULL);
@@ -634,11 +629,13 @@ void __init proc_misc_init(void)
                                (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
        }
 #endif
+       crash_create_proc_entry();
 #ifdef CONFIG_MAGIC_SYSRQ
        entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
        if (entry)
                entry->proc_fops = &proc_sysrq_trigger_operations;
 #endif
+       crash_enable_by_proc();
 #ifdef CONFIG_PPC32
        {
                extern struct file_operations ppc_htab_operations;