]> err.no Git - linux-2.6/log
linux-2.6
16 years ago[AVR32] Drop support for redundant "keepinitrd" boot-time parm.
Robert P. J. Day [Wed, 19 Sep 2007 12:43:42 +0000 (08:43 -0400)]
[AVR32] Drop support for redundant "keepinitrd" boot-time parm.

Given the existing "retain_initrd" boot-time parameter defined in
init/initramfs.c, there appears to be no need for the equivalent
"keepinitrd" parameter.

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] Make dma_sync_*_for_cpu no-ops
Haavard Skinnemoen [Fri, 7 Sep 2007 15:00:25 +0000 (16:00 +0100)]
[AVR32] Make dma_sync_*_for_cpu no-ops

I don't think the dma_sync_*_for_cpu ever did anything useful. We
flush the relevant cache lines when mapping the buffer or when calling
dma_sync_*_for_device(), and the CPU isn't allowed to touch the buffer
after that.

In other words, if these functions actually have anything to flush
from the caches, we're already in trouble.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] Remove unneeded 8K alignment of .text section
Haavard Skinnemoen [Mon, 17 Sep 2007 09:13:45 +0000 (11:13 +0200)]
[AVR32] Remove unneeded 8K alignment of .text section

__init_end, which comes immediately before .text, is already page
aligned, and that should be more than enough for the .text section.

The reason why we need to align the .text section is because the
interrupt handler offset is ORed with EVBA, so we need to provide
enough alignment of EVBA that this OR operation works as an ADD.

Currently, the last interrupt handler is not nearly a full page away
from EVBA, so it won't be a problem.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] Kill a few hardcoded constants in vmlinux.lds
Haavard Skinnemoen [Mon, 17 Sep 2007 09:08:28 +0000 (11:08 +0200)]
[AVR32] Kill a few hardcoded constants in vmlinux.lds

Use PAGE_SIZE, THREAD_SIZE and L1_CACHE_BYTES instead of harcoded
constants in places where that's what we really mean.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] rename vmlinux.lds
Sam Ravnborg [Sat, 15 Sep 2007 20:47:02 +0000 (22:47 +0200)]
[AVR32] rename vmlinux.lds

Rename vmlinux.lds to a .S file to match other architectures.
Simplify Makefile to match the rename and deleted the unused
USE_STANDARD_AS_RULE

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] fix command line parsing in early_parse_fbmem
Matteo Vit [Wed, 29 Aug 2007 08:19:40 +0000 (10:19 +0200)]
[AVR32] fix command line parsing in early_parse_fbmem

Signed-off-by: Matteo Vit - Dave S.r.l. <matteo.vit@dave.eu>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] checkstack support
Haavard Skinnemoen [Wed, 4 Jan 2006 15:58:49 +0000 (16:58 +0100)]
[AVR32] checkstack support

Add regexes to recognize stack frame adjustments in AVR32 code.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[QETH]: fix qeth_main.c
Andrew Morton [Thu, 11 Oct 2007 09:44:23 +0000 (02:44 -0700)]
[QETH]: fix qeth_main.c

drivers/s390/net/qeth_main.c: In function 'qeth_hard_header_parse':
drivers/s390/net/qeth_main.c:6584: error: 'dev' undeclared (first use in this function)
drivers/s390/net/qeth_main.c:6584: error: (Each undeclared identifier is reported only once
drivers/s390/net/qeth_main.c:6584: error: for each function it appears in.)

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
16 years ago[AVR32] Wire up USBA device
Haavard Skinnemoen [Thu, 14 Jun 2007 15:37:31 +0000 (17:37 +0200)]
[AVR32] Wire up USBA device

Implement at32_add_device_usba() and use it to wire up the USBA device
on ATSTK1000 and ATNGW100.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] add multidrive support for pio driver
Matteo Vit [Thu, 9 Aug 2007 12:55:34 +0000 (14:55 +0200)]
[AVR32] add multidrive support for pio driver

This patch add multidrive support for pio driver

Signed-off-by: Matteo Vit - Dave S.r.l. <matteo.vit@dave.eu>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] /sys/kernel/debug/at32ap_clk
David Brownell [Fri, 10 Aug 2007 03:56:07 +0000 (20:56 -0700)]
[AVR32] /sys/kernel/debug/at32ap_clk

When debugfs is available, /sys/kernel/debug/at32ap_clk will provide a
dump of the power manager registers and of the current clock tree.  This
can help sorting out various surprises, and when making runtime PM work.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years ago[AVR32] Move AT32_PM_BASE definition into pm.h
Haavard Skinnemoen [Thu, 16 Aug 2007 09:12:47 +0000 (11:12 +0200)]
[AVR32] Move AT32_PM_BASE definition into pm.h

We don't want to redefine this in every file that needs to access
the PM.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
16 years agox86: remove migration makefile tweaks
Thomas Gleixner [Thu, 11 Oct 2007 09:20:06 +0000 (11:20 +0200)]
x86: remove migration makefile tweaks

The makefile tweaks to allow the build during the move of
code from arch/i386 and arch/x86_64 are not longer necessary.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86: Add feature-removal entry for bzImage symlinks
Thomas Gleixner [Thu, 11 Oct 2007 09:20:05 +0000 (11:20 +0200)]
x86: Add feature-removal entry for bzImage symlinks

The i386/x86_64 merge provides a symlink to the old bzImage
location. This is just a transitional migration helper.
Remove it after a 6 month grace period.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386/x86_64: move headers to include/asm-x86
Thomas Gleixner [Thu, 11 Oct 2007 09:20:03 +0000 (11:20 +0200)]
i386/x86_64: move headers to include/asm-x86

Move the headers to include/asm-x86 and fixup the
header install make rules

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86: sanitize pathes arch/x86/kernel/cpu/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:17:26 +0000 (11:17 +0200)]
x86: sanitize pathes arch/x86/kernel/cpu/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86: sanitize pathes arch/x86/kernel/Makefile_64
Thomas Gleixner [Thu, 11 Oct 2007 09:17:25 +0000 (11:17 +0200)]
x86: sanitize pathes arch/x86/kernel/Makefile_64

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86: sanitize pathes arch/x86/kernel/Makefile_32
Thomas Gleixner [Thu, 11 Oct 2007 09:17:25 +0000 (11:17 +0200)]
x86: sanitize pathes arch/x86/kernel/Makefile_32

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move kernel
Thomas Gleixner [Thu, 11 Oct 2007 09:17:24 +0000 (11:17 +0200)]
x86_64: move kernel

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move ia32
Thomas Gleixner [Thu, 11 Oct 2007 09:17:21 +0000 (11:17 +0200)]
x86_64: move ia32

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move oprofile
Thomas Gleixner [Thu, 11 Oct 2007 09:17:19 +0000 (11:17 +0200)]
x86_64: move oprofile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move mm
Thomas Gleixner [Thu, 11 Oct 2007 09:17:18 +0000 (11:17 +0200)]
x86_64: move mm

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:17:16 +0000 (11:17 +0200)]
x86_64: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:17:15 +0000 (11:17 +0200)]
x86_64: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:17:13 +0000 (11:17 +0200)]
x86_64: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move pci
Thomas Gleixner [Thu, 11 Oct 2007 09:17:12 +0000 (11:17 +0200)]
x86_64: move pci

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move vdso
Thomas Gleixner [Thu, 11 Oct 2007 09:17:10 +0000 (11:17 +0200)]
x86_64: move vdso

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move lib
Thomas Gleixner [Thu, 11 Oct 2007 09:17:08 +0000 (11:17 +0200)]
x86_64: move lib

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move kernel/cpufreq
Thomas Gleixner [Thu, 11 Oct 2007 09:17:06 +0000 (11:17 +0200)]
x86_64: move kernel/cpufreq

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move kernel/acpi
Thomas Gleixner [Thu, 11 Oct 2007 09:17:05 +0000 (11:17 +0200)]
x86_64: move kernel/acpi

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: move crypto
Thomas Gleixner [Thu, 11 Oct 2007 09:17:03 +0000 (11:17 +0200)]
x86_64: move crypto

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel
Thomas Gleixner [Thu, 11 Oct 2007 09:17:01 +0000 (11:17 +0200)]
i386: move kernel

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel/cpu
Thomas Gleixner [Thu, 11 Oct 2007 09:16:58 +0000 (11:16 +0200)]
i386: move kernel/cpu

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move video
Thomas Gleixner [Thu, 11 Oct 2007 09:16:56 +0000 (11:16 +0200)]
i386: move video

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move oprofile
Thomas Gleixner [Thu, 11 Oct 2007 09:16:55 +0000 (11:16 +0200)]
i386: move oprofile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mach-voyager
Thomas Gleixner [Thu, 11 Oct 2007 09:16:53 +0000 (11:16 +0200)]
i386: move mach-voyager

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move xen
Thomas Gleixner [Thu, 11 Oct 2007 09:16:51 +0000 (11:16 +0200)]
i386: move xen

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mach-es7000
Thomas Gleixner [Thu, 11 Oct 2007 09:16:50 +0000 (11:16 +0200)]
i386: move mach-es7000

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mach-default
Thomas Gleixner [Thu, 11 Oct 2007 09:16:48 +0000 (11:16 +0200)]
i386: move mach-default

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mm
Thomas Gleixner [Thu, 11 Oct 2007 09:16:47 +0000 (11:16 +0200)]
i386: move mm

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:16:45 +0000 (11:16 +0200)]
i386: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:16:43 +0000 (11:16 +0200)]
i386: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move boot
Thomas Gleixner [Thu, 11 Oct 2007 09:16:41 +0000 (11:16 +0200)]
i386: move boot

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mach-generic
Thomas Gleixner [Thu, 11 Oct 2007 09:16:39 +0000 (11:16 +0200)]
i386: move mach-generic

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move mach-visws
Thomas Gleixner [Thu, 11 Oct 2007 09:16:38 +0000 (11:16 +0200)]
i386: move mach-visws

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move pci
Thomas Gleixner [Thu, 11 Oct 2007 09:16:36 +0000 (11:16 +0200)]
i386: move pci

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move power
Thomas Gleixner [Thu, 11 Oct 2007 09:16:34 +0000 (11:16 +0200)]
i386: move power

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move lib
Thomas Gleixner [Thu, 11 Oct 2007 09:16:33 +0000 (11:16 +0200)]
i386: move lib

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move math-emu
Thomas Gleixner [Thu, 11 Oct 2007 09:16:31 +0000 (11:16 +0200)]
i386: move math-emu

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel/cpu/mtrr
Thomas Gleixner [Thu, 11 Oct 2007 09:16:28 +0000 (11:16 +0200)]
i386: move kernel/cpu/mtrr

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel/cpu/cpufreq
Thomas Gleixner [Thu, 11 Oct 2007 09:16:27 +0000 (11:16 +0200)]
i386: move kernel/cpu/cpufreq

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel/cpu/mcheck
Thomas Gleixner [Thu, 11 Oct 2007 09:16:25 +0000 (11:16 +0200)]
i386: move kernel/cpu/mcheck

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move kernel/acpi
Thomas Gleixner [Thu, 11 Oct 2007 09:16:23 +0000 (11:16 +0200)]
i386: move kernel/acpi

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agoi386: move crypto
Thomas Gleixner [Thu, 11 Oct 2007 09:16:21 +0000 (11:16 +0200)]
i386: move crypto

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:16:20 +0000 (11:16 +0200)]
x86_64: prepare shared mm/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/fault.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:19 +0000 (11:16 +0200)]
x86_64: prepare shared mm/fault.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/pageattr.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:18 +0000 (11:16 +0200)]
x86_64: prepare shared mm/pageattr.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/k8topology.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:16 +0000 (11:16 +0200)]
x86_64: prepare shared mm/k8topology.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/extable.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:15 +0000 (11:16 +0200)]
x86_64: prepare shared mm/extable.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/numa.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:14 +0000 (11:16 +0200)]
x86_64: prepare shared mm/numa.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/mmap.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:12 +0000 (11:16 +0200)]
x86_64: prepare shared mm/mmap.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/init.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:11 +0000 (11:16 +0200)]
x86_64: prepare shared mm/init.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/ioremap.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:09 +0000 (11:16 +0200)]
x86_64: prepare shared mm/ioremap.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared mm/srat.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:08 +0000 (11:16 +0200)]
x86_64: prepare shared mm/srat.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared boot/compressed/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:16:06 +0000 (11:16 +0200)]
x86_64: prepare shared boot/compressed/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared boot/compressed/head.S
Thomas Gleixner [Thu, 11 Oct 2007 09:16:06 +0000 (11:16 +0200)]
x86_64: prepare shared boot/compressed/head.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared boot/compressed/vmlinux.scr
Thomas Gleixner [Thu, 11 Oct 2007 09:16:04 +0000 (11:16 +0200)]
x86_64: prepare shared boot/compressed/vmlinux.scr

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared boot/compressed/vmlinux.lds
Thomas Gleixner [Thu, 11 Oct 2007 09:16:03 +0000 (11:16 +0200)]
x86_64: prepare shared boot/compressed/vmlinux.lds

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared boot/compressed/misc.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:01 +0000 (11:16 +0200)]
x86_64: prepare shared boot/compressed/misc.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared pci/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:16:00 +0000 (11:16 +0200)]
x86_64: prepare shared pci/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared pci/mmconfig.c
Thomas Gleixner [Thu, 11 Oct 2007 09:16:00 +0000 (11:16 +0200)]
x86_64: prepare shared pci/mmconfig.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared pci/k8-bus.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:58 +0000 (11:15 +0200)]
x86_64: prepare shared pci/k8-bus.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:15:57 +0000 (11:15 +0200)]
x86_64: prepare shared lib/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/copy_user.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:56 +0000 (11:15 +0200)]
x86_64: prepare shared lib/copy_user.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/memset.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:55 +0000 (11:15 +0200)]
x86_64: prepare shared lib/memset.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/io.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:53 +0000 (11:15 +0200)]
x86_64: prepare shared lib/io.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/csum-partial.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:52 +0000 (11:15 +0200)]
x86_64: prepare shared lib/csum-partial.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/delay.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:50 +0000 (11:15 +0200)]
x86_64: prepare shared lib/delay.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/putuser.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:49 +0000 (11:15 +0200)]
x86_64: prepare shared lib/putuser.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/bitops.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:48 +0000 (11:15 +0200)]
x86_64: prepare shared lib/bitops.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/usercopy.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:46 +0000 (11:15 +0200)]
x86_64: prepare shared lib/usercopy.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/getuser.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:45 +0000 (11:15 +0200)]
x86_64: prepare shared lib/getuser.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/csum-wrappers.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:43 +0000 (11:15 +0200)]
x86_64: prepare shared lib/csum-wrappers.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/memmove.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:42 +0000 (11:15 +0200)]
x86_64: prepare shared lib/memmove.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/copy_user_nocache.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:40 +0000 (11:15 +0200)]
x86_64: prepare shared lib/copy_user_nocache.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/memcpy.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:39 +0000 (11:15 +0200)]
x86_64: prepare shared lib/memcpy.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/rwlock.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:37 +0000 (11:15 +0200)]
x86_64: prepare shared lib/rwlock.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/clear_page.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:36 +0000 (11:15 +0200)]
x86_64: prepare shared lib/clear_page.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/csum-copy.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:35 +0000 (11:15 +0200)]
x86_64: prepare shared lib/csum-copy.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/bitstr.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:33 +0000 (11:15 +0200)]
x86_64: prepare shared lib/bitstr.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/copy_page.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:32 +0000 (11:15 +0200)]
x86_64: prepare shared lib/copy_page.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/iomap_copy.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:30 +0000 (11:15 +0200)]
x86_64: prepare shared lib/iomap_copy.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared lib/thunk.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:29 +0000 (11:15 +0200)]
x86_64: prepare shared lib/thunk.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/acpi/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:15:27 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/acpi/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/acpi/sleep.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:27 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/acpi/sleep.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/acpi/wakeup.S
Thomas Gleixner [Thu, 11 Oct 2007 09:15:25 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/acpi/wakeup.S

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/Makefile
Thomas Gleixner [Thu, 11 Oct 2007 09:15:24 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/Makefile

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/pci-gart.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:23 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/pci-gart.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/syscall.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:22 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/syscall.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
16 years agox86_64: prepare shared kernel/machine_kexec.c
Thomas Gleixner [Thu, 11 Oct 2007 09:15:21 +0000 (11:15 +0200)]
x86_64: prepare shared kernel/machine_kexec.c

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>