--- linux-2.6.16.46-0.12.perfctr26/CREDITS.~1~ 2006-03-20 06:53:29.000000000 +0100 +++ linux-2.6.16.46-0.12.perfctr26/CREDITS 2008-06-23 00:44:21.000000000 +0200 @@ -2631,9 +2631,10 @@ S: Ottawa, Ontario S: Canada K2P 0X8 N: Mikael Pettersson -E: mikpe@csd.uu.se -W: http://www.csd.uu.se/~mikpe/ +E: mikpe@it.uu.se +W: http://user.it.uu.se/~mikpe/linux/ D: Miscellaneous fixes +D: Performance-monitoring counters driver N: Reed H. Petty E: rhp@draper.net --- linux-2.6.16.46-0.12.perfctr26/Documentation/ioctl-number.txt.~1~ 2006-03-20 06:53:29.000000000 +0100 +++ linux-2.6.16.46-0.12.perfctr26/Documentation/ioctl-number.txt 2008-06-23 00:44:21.000000000 +0200 @@ -188,6 +188,8 @@ Code Seq# Include File Comments 0xB1 00-1F PPPoX 0xCB 00-1F CBM serial IEC bus in development: +0xD0 all performance counters see drivers/perfctr/ + 0xDD 00-3F ZFCP device driver see drivers/s390/scsi/ 0xF3 00-3F video/sisfb.h sisfb (in development) --- linux-2.6.16.46-0.12.perfctr26/MAINTAINERS.~1~ 2007-05-18 13:16:27.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/MAINTAINERS 2008-06-23 00:44:21.000000000 +0200 @@ -2096,6 +2096,12 @@ M: tsbogend@alpha.franken.de L: netdev@vger.kernel.org S: Maintained +PERFORMANCE-MONITORING COUNTERS DRIVER +P: Mikael Pettersson +M: mikpe@it.uu.se +W: http://user.it.uu.se/~mikpe/linux/perfctr/ +S: Maintained + PHRAM MTD DRIVER P: Jörn Engel M: joern@wh.fh-wedel.de --- linux-2.6.16.46-0.12.perfctr26/arch/i386/Kconfig.~1~ 2007-05-18 13:16:33.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/i386/Kconfig 2008-06-23 00:44:21.000000000 +0200 @@ -739,6 +739,8 @@ config SECCOMP If unsure, say Y. Only embedded should say N here. +source "drivers/perfctr/Kconfig" + source kernel/Kconfig.hz config KEXEC --- linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/entry.S.~1~ 2007-05-18 13:16:32.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/entry.S 2008-06-23 00:44:21.000000000 +0200 @@ -446,6 +446,16 @@ ENTRY(name) \ /* The include is where all of the SMP etc. interrupts come from */ #include "entry_arch.h" +#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_KPERFCTR) +ENTRY(perfctr_interrupt) + pushl $LOCAL_PERFCTR_VECTOR-256 + SAVE_ALL + pushl %esp + call smp_perfctr_interrupt + addl $4, %esp + jmp ret_from_intr +#endif + ENTRY(divide_error) pushl $0 # no error code pushl $do_divide_error --- linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/i8259.c.~1~ 2007-05-18 13:16:13.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/i8259.c 2008-06-23 00:44:21.000000000 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include #include @@ -429,6 +430,8 @@ void __init init_IRQ(void) */ intr_init_hook(); + perfctr_vector_init(); + /* * Set the clock to HZ Hz, we already have a valid * vector now: --- linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/process.c.~1~ 2007-05-18 13:16:28.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/i386/kernel/process.c 2008-06-23 00:44:21.000000000 +0200 @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -380,6 +381,7 @@ void exit_thread(void) tss->io_bitmap_base = INVALID_IO_BITMAP_OFFSET; put_cpu(); } + perfctr_exit_thread(&tsk->thread); } void flush_thread(void) @@ -431,6 +433,8 @@ int copy_thread(int nr, unsigned long cl savesegment(fs,p->thread.fs); savesegment(gs,p->thread.gs); + perfctr_copy_task(p, regs); + tsk = current; if (unlikely(NULL != tsk->thread.io_bitmap_ptr)) { p->thread.io_bitmap_ptr = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL); @@ -689,6 +693,8 @@ struct task_struct fastcall * __switch_t disable_tsc(prev_p, next_p); + perfctr_resume_thread(next); + return prev_p; } --- linux-2.6.16.46-0.12.perfctr26/arch/powerpc/Kconfig.~1~ 2007-05-18 13:16:29.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/powerpc/Kconfig 2008-06-23 00:44:21.000000000 +0200 @@ -287,6 +287,11 @@ config NOT_COHERENT_CACHE bool depends on 4xx || 8xx || E200 default y + +if PPC32 +source "drivers/perfctr/Kconfig" +endif + endmenu source "init/Kconfig" --- linux-2.6.16.46-0.12.perfctr26/arch/powerpc/kernel/process.c.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/powerpc/kernel/process.c 2008-06-23 00:44:21.000000000 +0200 @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include @@ -329,12 +330,14 @@ struct task_struct *__switch_to(struct t #endif local_irq_save(flags); + perfctr_suspend_thread(&prev->thread); account_system_vtime(current); account_process_vtime(current); calculate_steal_time(); last = _switch(old_thread, new_thread); + perfctr_resume_thread(¤t->thread); local_irq_restore(flags); @@ -462,6 +465,7 @@ void show_regs(struct pt_regs * regs) void exit_thread(void) { discard_lazy_cpu_state(); + perfctr_exit_thread(¤t->thread); } void flush_thread(void) @@ -574,6 +578,8 @@ int copy_thread(int nr, unsigned long cl p->thread.last_syscall = -1; #endif + perfctr_copy_task(p, regs); + return 0; } --- linux-2.6.16.46-0.12.perfctr26/arch/x86_64/Kconfig.~1~ 2007-05-18 13:16:32.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/x86_64/Kconfig 2008-06-23 00:44:21.000000000 +0200 @@ -532,6 +532,8 @@ config SECCOMP If unsure, say Y. Only embedded should say N here. +source "drivers/perfctr/Kconfig" + source kernel/Kconfig.hz endmenu --- linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/entry.S.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/entry.S 2008-06-23 00:44:21.000000000 +0200 @@ -646,6 +646,11 @@ ENTRY(spurious_interrupt) apicinterrupt SPURIOUS_APIC_VECTOR,smp_spurious_interrupt #endif +#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_KPERFCTR) +ENTRY(perfctr_interrupt) + apicinterrupt LOCAL_PERFCTR_VECTOR,smp_perfctr_interrupt +#endif + /* * Exception entry points. */ --- linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/i8259.c.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/i8259.c 2008-06-23 00:44:21.000000000 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include /* * Common place to define all x86 IRQ vectors @@ -599,6 +600,8 @@ void __init init_IRQ(void) set_intr_gate(ERROR_APIC_VECTOR, error_interrupt); #endif + perfctr_vector_init(); + /* * Set the clock to HZ Hz, we already have a valid * vector now: --- linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/process.c.~1~ 2007-05-18 13:16:28.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/arch/x86_64/kernel/process.c 2008-06-23 00:44:21.000000000 +0200 @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -364,6 +365,7 @@ void exit_thread(void) t->io_bitmap_max = 0; put_cpu(); } + perfctr_exit_thread(&me->thread); } void flush_thread(void) @@ -465,6 +467,8 @@ int copy_thread(int nr, unsigned long cl asm("mov %%es,%0" : "=m" (p->thread.es)); asm("mov %%ds,%0" : "=m" (p->thread.ds)); + perfctr_copy_task(p, regs); + if (unlikely(me->thread.io_bitmap_ptr != NULL)) { p->thread.io_bitmap_ptr = kmalloc(IO_BITMAP_BYTES, GFP_KERNEL); if (!p->thread.io_bitmap_ptr) { @@ -621,6 +625,8 @@ __switch_to(struct task_struct *prev_p, } } + perfctr_resume_thread(next); + return prev_p; } --- linux-2.6.16.46-0.12.perfctr26/drivers/Makefile.~1~ 2007-05-18 13:16:32.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/drivers/Makefile 2008-06-23 00:44:21.000000000 +0200 @@ -72,6 +72,7 @@ obj-$(CONFIG_CPU_FREQ) += cpufreq/ obj-$(CONFIG_MMC) += mmc/ obj-$(CONFIG_INFINIBAND) += infiniband/ obj-$(CONFIG_SGI_SN) += sn/ +obj-$(CONFIG_KPERFCTR) += perfctr/ obj-y += firmware/ obj-$(CONFIG_CRYPTO) += crypto/ obj-$(CONFIG_SUPERH) += sh/ --- linux-2.6.16.46-0.12.perfctr26/fs/exec.c.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/fs/exec.c 2008-06-23 00:44:28.000000000 +0200 @@ -51,6 +51,7 @@ #include #include #include +#include #include #include @@ -894,6 +895,7 @@ int flush_old_exec(struct linux_binprm * set_task_comm(current, tcomm); current->flags &= ~PF_RANDOMIZE; + perfctr_flush_thread(¤t->thread); flush_thread(); /* Set the new mm task size. We have to do that late because it may --- linux-2.6.16.46-0.12.perfctr26/include/asm-i386/mach-default/irq_vectors.h.~1~ 2007-05-18 13:16:25.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-i386/mach-default/irq_vectors.h 2008-06-23 00:44:21.000000000 +0200 @@ -59,14 +59,15 @@ * sources per level' errata. */ #define LOCAL_TIMER_VECTOR 0xef +#define LOCAL_PERFCTR_VECTOR 0xee /* - * First APIC vector available to drivers: (vectors 0x30-0xee) + * First APIC vector available to drivers: (vectors 0x30-0xed) * we start at 0x31 to spread out vectors evenly between priority * levels. (0x80 is the syscall vector) */ #define FIRST_DEVICE_VECTOR 0x31 -#define FIRST_SYSTEM_VECTOR 0xef +#define FIRST_SYSTEM_VECTOR 0xee #define TIMER_IRQ 0 --- linux-2.6.16.46-0.12.perfctr26/include/asm-i386/mach-visws/irq_vectors.h.~1~ 2006-03-20 06:53:29.000000000 +0100 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-i386/mach-visws/irq_vectors.h 2008-06-23 00:44:21.000000000 +0200 @@ -35,14 +35,15 @@ * sources per level' errata. */ #define LOCAL_TIMER_VECTOR 0xef +#define LOCAL_PERFCTR_VECTOR 0xee /* - * First APIC vector available to drivers: (vectors 0x30-0xee) + * First APIC vector available to drivers: (vectors 0x30-0xed) * we start at 0x31 to spread out vectors evenly between priority * levels. (0x80 is the syscall vector) */ #define FIRST_DEVICE_VECTOR 0x31 -#define FIRST_SYSTEM_VECTOR 0xef +#define FIRST_SYSTEM_VECTOR 0xee #define TIMER_IRQ 0 --- linux-2.6.16.46-0.12.perfctr26/include/asm-i386/processor.h.~1~ 2007-05-18 13:16:27.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-i386/processor.h 2008-06-23 00:44:21.000000000 +0200 @@ -470,6 +470,8 @@ struct thread_struct { unsigned long iopl; /* max allowed port in the bitmap, in bytes: */ unsigned long io_bitmap_max; +/* performance counters */ + struct vperfctr *perfctr; }; #define INIT_THREAD { \ --- linux-2.6.16.46-0.12.perfctr26/include/asm-i386/system.h.~1~ 2007-05-18 13:16:32.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-i386/system.h 2008-06-23 00:44:21.000000000 +0200 @@ -18,6 +18,7 @@ extern struct task_struct * FASTCALL(__s */ #define switch_to(prev,next,last) do { \ unsigned long esi,edi; \ + perfctr_suspend_thread(&(prev)->thread); \ asm volatile("pushfl\n\t" /* Save flags */ \ "pushl %%ebp\n\t" \ "movl %%esp,%0\n\t" /* save ESP */ \ --- linux-2.6.16.46-0.12.perfctr26/include/asm-powerpc/processor.h.~1~ 2007-05-18 13:16:27.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-powerpc/processor.h 2008-06-23 00:44:21.000000000 +0200 @@ -197,6 +197,9 @@ struct thread_struct { unsigned long spefscr; /* SPE & eFP status */ int used_spe; /* set if process has used spe */ #endif /* CONFIG_SPE */ +#ifdef CONFIG_PERFCTR_VIRTUAL + struct vperfctr *perfctr; /* performance counters */ +#endif }; #define ARCH_MIN_TASKALIGN 16 --- linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/hw_irq.h.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/hw_irq.h 2008-06-23 00:44:21.000000000 +0200 @@ -71,14 +71,15 @@ struct hw_interrupt_type; * sources per level' errata. */ #define LOCAL_TIMER_VECTOR 0xef +#define LOCAL_PERFCTR_VECTOR 0xee /* - * First APIC vector available to drivers: (vectors 0x30-0xee) + * First APIC vector available to drivers: (vectors 0x30-0xed) * we start at 0x31 to spread out vectors evenly between priority * levels. (0x80 is the syscall vector) */ #define FIRST_DEVICE_VECTOR 0x31 -#define FIRST_SYSTEM_VECTOR 0xef /* duplicated in irq.h */ +#define FIRST_SYSTEM_VECTOR 0xee /* duplicated in irq.h */ #ifndef __ASSEMBLY__ --- linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/irq.h.~1~ 2006-03-20 06:53:29.000000000 +0100 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/irq.h 2008-06-23 00:44:21.000000000 +0200 @@ -29,7 +29,7 @@ */ #define NR_VECTORS 256 -#define FIRST_SYSTEM_VECTOR 0xef /* duplicated in hw_irq.h */ +#define FIRST_SYSTEM_VECTOR 0xee /* duplicated in hw_irq.h */ #ifdef CONFIG_PCI_MSI #define NR_IRQS FIRST_SYSTEM_VECTOR --- linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/processor.h.~1~ 2007-05-18 13:16:27.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/processor.h 2008-06-23 00:44:21.000000000 +0200 @@ -273,6 +273,8 @@ struct thread_struct { unsigned io_bitmap_max; /* cached TLS descriptors. */ u64 tls_array[GDT_ENTRY_TLS_ENTRIES]; +/* performance counters */ + struct vperfctr *perfctr; } __attribute__((aligned(16))); #define INIT_THREAD { \ --- linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/system.h.~1~ 2007-05-18 13:16:11.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/include/asm-x86_64/system.h 2008-06-23 00:44:21.000000000 +0200 @@ -27,7 +27,8 @@ ,"rcx","rbx","rdx","r8","r9","r10","r11","r12","r13","r14","r15" /* Save restore flags to clear handle leaking NT */ -#define switch_to(prev,next,last) \ +#define switch_to(prev,next,last) do { \ + perfctr_suspend_thread(&(prev)->thread); \ asm volatile(SAVE_CONTEXT \ "movq %%rsp,%P[threadrsp](%[prev])\n\t" /* save RSP */ \ "movq %P[threadrsp](%[next]),%%rsp\n\t" /* restore RSP */ \ @@ -47,7 +48,8 @@ [tif_fork] "i" (TIF_FORK), \ [thread_info] "i" (offsetof(struct task_struct, thread_info)), \ [pda_pcurrent] "i" (offsetof(struct x8664_pda, pcurrent)) \ - : "memory", "cc" __EXTRA_CLOBBER) + : "memory", "cc" __EXTRA_CLOBBER); \ +} while (0) extern void load_gs_index(unsigned); --- linux-2.6.16.46-0.12.perfctr26/include/linux/config.h.~1~ 2006-03-20 06:53:29.000000000 +0100 +++ linux-2.6.16.46-0.12.perfctr26/include/linux/config.h 2008-06-23 00:44:21.000000000 +0200 @@ -3,6 +3,10 @@ /* This file is no longer in use and kept only for backward compatibility. * autoconf.h is now included via -imacros on the commandline */ + +/* describe relevant differences from the base kernel */ +#define HAVE_EXPORT___put_task_struct 1 + #include #endif --- linux-2.6.16.46-0.12.perfctr26/kernel/exit.c.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/kernel/exit.c 2008-06-23 00:44:21.000000000 +0200 @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -110,6 +111,7 @@ repeat: zap_leader = (leader->exit_signal == -1); } + perfctr_release_task(p); sched_exit(p); write_unlock_irq(&tasklist_lock); spin_unlock(&p->proc_lock); --- linux-2.6.16.46-0.12.perfctr26/kernel/sched.c.~1~ 2007-05-18 13:16:31.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/kernel/sched.c 2008-06-23 00:44:21.000000000 +0200 @@ -44,6 +44,7 @@ #include #include #include +#include #include #include #include @@ -4450,6 +4451,8 @@ int set_cpus_allowed(task_t *p, cpumask_ migration_req_t req; runqueue_t *rq; + perfctr_set_cpus_allowed(p, new_mask); + rq = task_rq_lock(p, &flags); if (!cpus_intersects(new_mask, cpu_online_map)) { ret = -EINVAL; --- linux-2.6.16.46-0.12.perfctr26/kernel/timer.c.~1~ 2007-05-18 13:16:32.000000000 +0200 +++ linux-2.6.16.46-0.12.perfctr26/kernel/timer.c 2008-06-23 00:44:21.000000000 +0200 @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -859,6 +860,7 @@ void update_process_times(int user_tick) account_user_time(p, jiffies_to_cputime(1)); else account_system_time(p, HARDIRQ_OFFSET, jiffies_to_cputime(1)); + perfctr_sample_thread(&p->thread); run_local_timers(); if (rcu_pending(cpu)) rcu_check_callbacks(cpu, user_tick);