lkml.org 
[lkml]   [2006]   [May]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[PATCH 2/11] perfmon2 patch for review: modified generic files
    This patch contains all the modified generic files.




    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/Makefile linux-2.6.17-rc4/Makefile
    --- linux-2.6.17-rc4.orig/Makefile 2006-05-12 03:16:09.000000000 -0700
    +++ linux-2.6.17-rc4/Makefile 2006-05-12 03:19:19.000000000 -0700
    @@ -1,7 +1,7 @@
    VERSION = 2
    PATCHLEVEL = 6
    SUBLEVEL = 17
    -EXTRAVERSION =-rc4
    +EXTRAVERSION =-rc4-perfmon2
    NAME=Sliding Snow Leopard

    # *DOCUMENTATION*
    @@ -518,7 +518,7 @@


    ifeq ($(KBUILD_EXTMOD),)
    -core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/
    +core-y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ perfmon/

    vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
    $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/include/linux/sched.h linux-2.6.17-rc4/include/linux/sched.h
    --- linux-2.6.17-rc4.orig/include/linux/sched.h 2006-05-12 03:16:14.000000000 -0700
    +++ linux-2.6.17-rc4/include/linux/sched.h 2006-05-12 03:18:52.000000000 -0700
    @@ -40,6 +40,7 @@
    #include <linux/auxvec.h> /* For AT_VECTOR_SIZE */

    struct exec_domain;
    +struct pfm_context;

    /*
    * cloning flags:
    @@ -888,6 +889,10 @@
    * cache last used pipe for splice
    */
    struct pipe_inode_info *splice_pipe;
    +
    +#ifdef CONFIG_PERFMON
    + struct pfm_context *pfm_context;
    +#endif
    };

    static inline pid_t process_group(struct task_struct *tsk)
    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/include/linux/syscalls.h linux-2.6.17-rc4/include/linux/syscalls.h
    --- linux-2.6.17-rc4.orig/include/linux/syscalls.h 2006-05-12 03:16:14.000000000 -0700
    +++ linux-2.6.17-rc4/include/linux/syscalls.h 2006-05-12 03:18:52.000000000 -0700
    @@ -29,6 +29,13 @@
    struct new_utsname;
    struct nfsctl_arg;
    struct __old_kernel_stat;
    +struct pfarg_ctx;
    +struct pfarg_pmc;
    +struct pfarg_pmd;
    +struct pfarg_start;
    +struct pfarg_load;
    +struct pfarg_setinfo;
    +struct pfarg_setdesc;
    struct pollfd;
    struct rlimit;
    struct rusage;
    @@ -582,4 +589,27 @@
    asmlinkage long sys_sync_file_range(int fd, loff_t offset, loff_t nbytes,
    unsigned int flags);

    +asmlinkage long sys_pfm_create_context(struct pfarg_ctx __user *ureq,
    + void __user *uarg, size_t smpl_size);
    +asmlinkage long sys_pfm_write_pmcs(int fd, struct pfarg_pmc __user *ureq,
    + int count);
    +asmlinkage long sys_pfm_write_pmds(int fd, struct pfarg_pmd __user *ureq,
    + int count);
    +asmlinkage long sys_pfm_read_pmds(int fd, struct pfarg_pmd __user *ureq,
    + int count);
    +asmlinkage long sys_pfm_restart(int fd);
    +asmlinkage long sys_pfm_stop(int fd);
    +asmlinkage long sys_pfm_start(int fd, struct pfarg_start __user *ureq);
    +asmlinkage long sys_pfm_load_context(int fd, struct pfarg_load __user *ureq);
    +asmlinkage long sys_pfm_unload_context(int fd);
    +asmlinkage long sys_pfm_delete_evtsets(int fd,
    + struct pfarg_setinfo __user *ureq,
    + int count);
    +asmlinkage long sys_pfm_create_evtsets(int fd,
    + struct pfarg_setdesc __user *ureq,
    + int count);
    +asmlinkage long sys_pfm_getinfo_evtsets(int fd,
    + struct pfarg_setinfo __user *ureq,
    + int count);
    +
    #endif
    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/kernel/sched.c linux-2.6.17-rc4/kernel/sched.c
    --- linux-2.6.17-rc4.orig/kernel/sched.c 2006-05-12 03:16:14.000000000 -0700
    +++ linux-2.6.17-rc4/kernel/sched.c 2006-05-12 03:18:52.000000000 -0700
    @@ -50,6 +50,7 @@
    #include <linux/times.h>
    #include <linux/acct.h>
    #include <linux/kprobes.h>
    +#include <linux/perfmon.h>
    #include <asm/tlb.h>

    #include <asm/unistd.h>
    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/kernel/sys_ni.c linux-2.6.17-rc4/kernel/sys_ni.c
    --- linux-2.6.17-rc4.orig/kernel/sys_ni.c 2006-05-12 03:16:14.000000000 -0700
    +++ linux-2.6.17-rc4/kernel/sys_ni.c 2006-05-12 03:18:52.000000000 -0700
    @@ -111,6 +111,19 @@
    cond_syscall(compat_sys_ipc);
    cond_syscall(compat_sys_sysctl);

    +cond_syscall(sys_pfm_create_context);
    +cond_syscall(sys_pfm_write_pmcs);
    +cond_syscall(sys_pfm_write_pmds);
    +cond_syscall(sys_pfm_read_pmds);
    +cond_syscall(sys_pfm_restart);
    +cond_syscall(sys_pfm_start);
    +cond_syscall(sys_pfm_stop);
    +cond_syscall(sys_pfm_load_context);
    +cond_syscall(sys_pfm_unload_context);
    +cond_syscall(sys_pfm_create_evtsets);
    +cond_syscall(sys_pfm_delete_evtsets);
    +cond_syscall(sys_pfm_getinfo_evtsets);
    +
    /* arch-specific weak syscall entries */
    cond_syscall(sys_pciconfig_read);
    cond_syscall(sys_pciconfig_write);
    diff -ur --exclude-from=/tmp/excl37102 linux-2.6.17-rc4.orig/lib/Makefile linux-2.6.17-rc4/lib/Makefile
    --- linux-2.6.17-rc4.orig/lib/Makefile 2006-05-12 03:16:14.000000000 -0700
    +++ linux-2.6.17-rc4/lib/Makefile 2006-05-12 03:18:52.000000000 -0700
    @@ -5,7 +5,7 @@
    lib-y := errno.o ctype.o string.o vsprintf.o cmdline.o \
    bust_spinlocks.o rbtree.o radix-tree.o dump_stack.o \
    idr.o div64.o int_sqrt.o bitmap.o extable.o prio_tree.o \
    - sha1.o
    + sha1.o carta_random32.o

    lib-$(CONFIG_SMP) += cpumask.o

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/
    \
     
     \ /
      Last update: 2006-05-12 18:42    [W:4.828 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site