x86_64-2.6.21-git9-070510-3.bz2 2f39062a4e0679376f2c270a582a94b8 x86_64-2.6.21-git9-070510-3.bz2 VERSION=2 PATCHLEVEL=6 SUBLEVEL=21 EXTRAVERSION=-git9 Documentation/kernel-parameters.txt | 2 Makefile | 5 arch/i386/defconfig | 132 - arch/i386/kernel/Makefile | 4 arch/i386/kernel/cpu/transmeta.c | 6 arch/i386/kernel/paravirt.c | 2 arch/i386/kernel/sched-clock.c | 206 ++ arch/i386/kernel/traps.c | 84 arch/i386/kernel/tsc.c | 58 arch/i386/kernel/unwind.S | 36 arch/i386/kernel/verify_cpu.S | 4 arch/i386/kernel/vmi.c | 2 arch/i386/kernel/vmiclock.c | 4 arch/x86_64/Makefile | 5 arch/x86_64/defconfig | 166 + arch/x86_64/ia32/ia32_binfmt.c | 1 arch/x86_64/kernel/Makefile | 1 arch/x86_64/kernel/aperture.c | 2 arch/x86_64/kernel/apic.c | 2 arch/x86_64/kernel/bugs.c | 1 arch/x86_64/kernel/pci-gart.c | 2 arch/x86_64/kernel/setup.c | 4 arch/x86_64/kernel/time.c | 2 arch/x86_64/kernel/traps.c | 85 arch/x86_64/kernel/tsc.c | 28 arch/x86_64/kernel/unwind.S | 38 arch/x86_64/kernel/vmlinux.lds.S | 11 arch/x86_64/kernel/vsyscall.c | 22 arch/x86_64/mm/init.c | 9 arch/x86_64/mm/srat.c | 12 arch/x86_64/vdso/Makefile | 49 arch/x86_64/vdso/vclock_gettime.c | 120 + arch/x86_64/vdso/vdso-note.S | 12 arch/x86_64/vdso/vdso-start.S | 2 arch/x86_64/vdso/vdso.S | 2 arch/x86_64/vdso/vdso.lds.S | 77 arch/x86_64/vdso/vextern.h | 16 arch/x86_64/vdso/vgetcpu.c | 50 arch/x86_64/vdso/vma.c | 138 + arch/x86_64/vdso/voffset.h | 1 arch/x86_64/vdso/vvar.c | 12 drivers/acpi/numa.c | 20 drivers/char/agp/amd64-agp.c | 2 include/acpi/acpi_numa.h | 3 include/asm-generic/vmlinux.lds.h | 22 include/asm-i386/alternative.h | 6 include/asm-i386/msr.h | 56 include/asm-i386/paravirt.h | 12 include/asm-i386/sched-clock.h | 49 include/asm-i386/timer.h | 2 include/asm-i386/tsc.h | 6 include/asm-i386/unwind.h | 91 include/asm-i386/vmi_time.h | 2 include/asm-x86_64/alternative.h | 6 include/asm-x86_64/auxvec.h | 2 include/asm-x86_64/elf.h | 13 include/asm-x86_64/mmu.h | 1 include/asm-x86_64/system.h | 6 include/asm-x86_64/timer.h | 1 include/asm-x86_64/timex.h | 1 include/asm-x86_64/unistd.h | 4 include/asm-x86_64/unwind.h | 96 + include/asm-x86_64/vgtod.h | 29 include/asm-x86_64/vsyscall.h | 3 include/linux/acpi.h | 2 include/linux/topology.h | 2 include/linux/unwind.h | 63 kernel/Makefile | 1 kernel/irq/proc.c | 9 kernel/unwind.c | 1288 ++++++++++++++ lib/Kconfig.debug | 21 lib/swiotlb.c | 1 patches/build-tar-files | 20 patches/defconfig-update | 194 ++ patches/define-and-use-local_distance-and-remote_distance | 48 patches/fix-definition-of-user686 | 26 patches/get-cycles-sync-asm | 59 patches/i386-defconfig-update | 308 +++ patches/irq-migrate-report | 25 patches/msr-be-paranoid-about-types-and-parentheses | 78 patches/mtrr-cpuinit | 36 patches/new-syscall | 17 patches/off-by-two-error-in-aperture_c | 54 patches/paravirt-add-a-sched_clock-paravirt_op | 198 ++ patches/paravirt-fix-msr | 39 patches/printk-debug | 26 patches/remove-swiotlb-init-export | 23 patches/remove-unnecessary-irq-disabling | 34 patches/remove-unused-rdtsc-macro | 46 patches/sched-clock-debug | 27 patches/sched-clock-share | 124 + patches/sched-clock64 | 80 patches/series | 25 patches/type-safe-stack | 25 patches/unwinder | 263 ++ patches/various-cleanups | 119 + patches/vdso | 267 ++ patches/verify-cpu-compile | 19 scripts/package/buildtar | 4 99 files changed, 5086 insertions(+), 333 deletions(-) Detailed patch listing (individual files found in the patches tar file) Andi Kleen >>defconfig-update<< Update defconfig Andi Kleen >>i386-defconfig-update<< i386: Update defconfig Jan Beulich >>unwinder<< x86: Readd dwarf2 unwinder Andi Kleen >>vdso<< Add vDSO for x86-64 with gettimeofday/clock_gettime/getcpu Glauber de Oliveira Costa >>remove-unnecessary-irq-disabling<< Remove unnecessary irq disabling Andi Kleen >>sched-clock-share<< i386: Rewrite sched_clock Andi Kleen >>sched-clock64<< Use new shared sched_clock in x86-64 too Jeremy Fitzhardinge >>paravirt-add-a-sched_clock-paravirt_op<< x86: PARAVIRT: Add a sched_clock paravirt_op Andi Kleen >>build-tar-files<< Support x86_64 in make buildtar Andi Kleen >>irq-migrate-report<< Report the pending irq if available in smp_affinity "H. Peter Anvin" >>remove-unused-rdtsc-macro<< i386: remove unused rdtsc() macro Andi Kleen >>verify-cpu-compile<< i386: Fix compilation of verify_cpu.S on old binutils "H. Peter Anvin" >>msr-be-paranoid-about-types-and-parentheses<< i386: be paranoid about types and parentheses Andrew Hastings >>off-by-two-error-in-aperture_c<< off-by-two error in aperture.c Andi Kleen >>new-syscall<< Add epoll_pwait() Andi Kleen >>mtrr-cpuinit<< Don't call mtrr_bp_init from identify_cpu Andi Kleen >>remove-swiotlb-init-export<< Don't export unneeded symbol in swiotlb "H. Peter Anvin" >>fix-definition-of-user686<< i386: fix definition of USER686 David Rientjes >>define-and-use-local_distance-and-remote_distance<< define and use LOCAL_DISTANCE and REMOTE_DISTANCE David Rientjes >>various-cleanups<< various cleanups Andi Kleen >>type-safe-stack<< Use type safe offsets in switch_to Joerg Roedel >>get-cycles-sync-asm<< Fix miscompilation in get_cycles_sync