Hello Ingo,
Here is updated patches for x86-tip.
The following changes since commit 087115517d43c25e7286a62bf4d458becef5a244:
Ingo Molnar (1):
Merge branch 'xen-64bit'
are available in the git repository at:
git://git.infradead.org/users/jaswinder/linux-2.6-tip.git master
Jaswinder Singh (13):
x86: Introducing asm/syscalls.h
x86: process_32.c declare cpu_number before they get used
x86: signal_XX.c declare do_notify_resume before they get used
x86: time_XX.c declare functions before they get used
x86: setup.c declare saved_video_mode before they get used
x86: e820.c declare pci_mem_start before they get used
x86: pci-dma.c declare iommu_bio_merge before they get used
x86: pci-nommu.c declare nommu_dma_ops before they get used
x86: i387.c declare dump_fpu() before they get used
x86: ptrace.c declare functions before they get used
x86: proc.c declare cpuinfo_op before they get used
x86: common.c declare idle_regs before they get used
x86: mtrr/main.c declare range_state as static
arch/x86/kernel/cpu/mtrr/main.c | 2 +-
arch/x86/kernel/ioport.c | 1 +
arch/x86/kernel/ldt.c | 1 +
arch/x86/kernel/process_32.c | 2 +
arch/x86/kernel/process_64.c | 1 +
arch/x86/kernel/signal_32.c | 1 +
arch/x86/kernel/signal_64.c | 1 +
arch/x86/kernel/sys_i386_32.c | 2 +
arch/x86/kernel/sys_x86_64.c | 1 +
arch/x86/kernel/time_32.c | 1 +
arch/x86/kernel/tls.c | 1 +
arch/x86/kernel/vm86_32.c | 1 +
include/asm-x86/dma-mapping.h | 1 +
include/asm-x86/e820.h | 1 +
include/asm-x86/i387.h | 1 +
include/asm-x86/io.h | 2 +
include/asm-x86/io_64.h | 1 -
include/asm-x86/processor.h | 4 ++
include/asm-x86/ptrace.h | 3 +
include/asm-x86/setup.h | 1 +
include/asm-x86/signal.h | 3 +
include/asm-x86/smp.h | 4 +-
include/asm-x86/syscalls.h | 90 +++++++++++++++++++++++++++++++++++++++
include/asm-x86/time.h | 2 +
include/asm-x86/timer.h | 5 ++-
25 files changed, 129 insertions(+), 4 deletions(-)
create mode 100644 include/asm-x86/syscalls.h
* Jaswinder Singh <[email protected]> wrote:
> Hello Ingo,
>
> Here is updated patches for x86-tip.
>
> The following changes since commit 087115517d43c25e7286a62bf4d458becef5a244:
> Ingo Molnar (1):
> Merge branch 'xen-64bit'
>
> are available in the git repository at:
>
> git://git.infradead.org/users/jaswinder/linux-2.6-tip.git master
pulled, thanks Jaswinder.
I've rebased it back to -git [Linus pulled most of the pending x86
topics yesterday so this was possible cleanly] and pushed it out into
tip/x86/prototypes.
I'll give it some build testing in tip/master.
Ingo