diff options
| author | James Morris <jmorris@namei.org> | 2008-12-04 17:16:36 +1100 | 
|---|---|---|
| committer | James Morris <jmorris@namei.org> | 2008-12-04 17:16:36 +1100 | 
| commit | ec98ce480ada787f2cfbd696980ff3564415505b (patch) | |
| tree | 1a4d644b38f9f1e4b4e086fde0b195df4a92cf84 /arch/alpha | |
| parent | 3496f92beb9aa99ef21fccc154a36c7698e9c538 (diff) | |
| parent | feaf3848a813a106f163013af6fcf6c4bfec92d9 (diff) | |
| download | linux-ec98ce480ada787f2cfbd696980ff3564415505b.tar.bz2 | |
Merge branch 'master' into next
Conflicts:
	fs/nfsd/nfs4recover.c
Manually fixed above to use new creds API functions, e.g.
nfs4_save_creds().
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'arch/alpha')
| -rw-r--r-- | arch/alpha/kernel/pci.c | 2 | ||||
| -rw-r--r-- | arch/alpha/kernel/smp.c | 6 | ||||
| -rw-r--r-- | arch/alpha/kernel/traps.c | 4 | 
3 files changed, 6 insertions, 6 deletions
| diff --git a/arch/alpha/kernel/pci.c b/arch/alpha/kernel/pci.c index 5cf45fc51343..ff8cb638472e 100644 --- a/arch/alpha/kernel/pci.c +++ b/arch/alpha/kernel/pci.c @@ -338,7 +338,7 @@ common_swizzle(struct pci_dev *dev, u8 *pinp)  	return PCI_SLOT(dev->devfn);  } -void __devinit +void  pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,  			 struct resource *res)  { diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c index e657c45d91d2..cf7da10097bb 100644 --- a/arch/alpha/kernel/smp.c +++ b/arch/alpha/kernel/smp.c @@ -121,7 +121,7 @@ wait_boot_cpu_to_stop(int cpuid)  /*   * Where secondaries begin a life of C.   */ -void __init +void __cpuinit  smp_callin(void)  {  	int cpuid = hard_smp_processor_id(); @@ -198,7 +198,7 @@ wait_for_txrdy (unsigned long cpumask)   * Send a message to a secondary's console.  "START" is one such   * interesting message.  ;-)   */ -static void __init +static void __cpuinit  send_secondary_console_msg(char *str, int cpuid)  {  	struct percpu_struct *cpu; @@ -289,7 +289,7 @@ recv_secondary_console_msg(void)  /*   * Convince the console to have a secondary cpu begin execution.   */ -static int __init +static int __cpuinit  secondary_cpu_start(int cpuid, struct task_struct *idle)  {  	struct percpu_struct *cpu; diff --git a/arch/alpha/kernel/traps.c b/arch/alpha/kernel/traps.c index c778779007fc..cefc5a355ef9 100644 --- a/arch/alpha/kernel/traps.c +++ b/arch/alpha/kernel/traps.c @@ -31,7 +31,7 @@  static int opDEC_fix; -static void __init +static void __cpuinit  opDEC_check(void)  {  	__asm__ __volatile__ ( @@ -1072,7 +1072,7 @@ give_sigbus:  	return;  } -void __init +void __cpuinit  trap_init(void)  {  	/* Tell PAL-code what global pointer we want in the kernel.  */ |