diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-14 09:58:24 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-14 09:58:24 -0800 | 
| commit | d0316554d3586cbea60592a41391b5def2553d6f (patch) | |
| tree | 5e7418f0bacbc68cec5dfd1541e03eb56870aa02 /arch/ia64/xen/irq_xen.c | |
| parent | fb0bbb92d42d5bd0ab224605444efdfed06d6934 (diff) | |
| parent | 51e99be00ce2713cbb841cedc997cafa6e26c7f4 (diff) | |
| download | olio-linux-3.10-d0316554d3586cbea60592a41391b5def2553d6f.tar.xz olio-linux-3.10-d0316554d3586cbea60592a41391b5def2553d6f.zip  | |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu: (34 commits)
  m68k: rename global variable vmalloc_end to m68k_vmalloc_end
  percpu: add missing per_cpu_ptr_to_phys() definition for UP
  percpu: Fix kdump failure if booted with percpu_alloc=page
  percpu: make misc percpu symbols unique
  percpu: make percpu symbols in ia64 unique
  percpu: make percpu symbols in powerpc unique
  percpu: make percpu symbols in x86 unique
  percpu: make percpu symbols in xen unique
  percpu: make percpu symbols in cpufreq unique
  percpu: make percpu symbols in oprofile unique
  percpu: make percpu symbols in tracer unique
  percpu: make percpu symbols under kernel/ and mm/ unique
  percpu: remove some sparse warnings
  percpu: make alloc_percpu() handle array types
  vmalloc: fix use of non-existent percpu variable in put_cpu_var()
  this_cpu: Use this_cpu_xx in trace_functions_graph.c
  this_cpu: Use this_cpu_xx for ftrace
  this_cpu: Use this_cpu_xx in nmi handling
  this_cpu: Use this_cpu operations in RCU
  this_cpu: Use this_cpu ops for VM statistics
  ...
Fix up trivial (famous last words) global per-cpu naming conflicts in
	arch/x86/kvm/svm.c
	mm/slab.c
Diffstat (limited to 'arch/ia64/xen/irq_xen.c')
| -rw-r--r-- | arch/ia64/xen/irq_xen.c | 131 | 
1 files changed, 67 insertions, 64 deletions
diff --git a/arch/ia64/xen/irq_xen.c b/arch/ia64/xen/irq_xen.c index f042e192d2f..a3fb7cf9ae1 100644 --- a/arch/ia64/xen/irq_xen.c +++ b/arch/ia64/xen/irq_xen.c @@ -63,19 +63,19 @@ xen_free_irq_vector(int vector)  } -static DEFINE_PER_CPU(int, timer_irq) = -1; -static DEFINE_PER_CPU(int, ipi_irq) = -1; -static DEFINE_PER_CPU(int, resched_irq) = -1; -static DEFINE_PER_CPU(int, cmc_irq) = -1; -static DEFINE_PER_CPU(int, cmcp_irq) = -1; -static DEFINE_PER_CPU(int, cpep_irq) = -1; +static DEFINE_PER_CPU(int, xen_timer_irq) = -1; +static DEFINE_PER_CPU(int, xen_ipi_irq) = -1; +static DEFINE_PER_CPU(int, xen_resched_irq) = -1; +static DEFINE_PER_CPU(int, xen_cmc_irq) = -1; +static DEFINE_PER_CPU(int, xen_cmcp_irq) = -1; +static DEFINE_PER_CPU(int, xen_cpep_irq) = -1;  #define NAME_SIZE	15 -static DEFINE_PER_CPU(char[NAME_SIZE], timer_name); -static DEFINE_PER_CPU(char[NAME_SIZE], ipi_name); -static DEFINE_PER_CPU(char[NAME_SIZE], resched_name); -static DEFINE_PER_CPU(char[NAME_SIZE], cmc_name); -static DEFINE_PER_CPU(char[NAME_SIZE], cmcp_name); -static DEFINE_PER_CPU(char[NAME_SIZE], cpep_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_timer_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_ipi_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_resched_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_cmc_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_cmcp_name); +static DEFINE_PER_CPU(char[NAME_SIZE], xen_cpep_name);  #undef NAME_SIZE  struct saved_irq { @@ -144,64 +144,64 @@ __xen_register_percpu_irq(unsigned int cpu, unsigned int vec,  	if (xen_slab_ready) {  		switch (vec) {  		case IA64_TIMER_VECTOR: -			snprintf(per_cpu(timer_name, cpu), -				 sizeof(per_cpu(timer_name, cpu)), +			snprintf(per_cpu(xen_timer_name, cpu), +				 sizeof(per_cpu(xen_timer_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_virq_to_irqhandler(VIRQ_ITC, cpu,  				action->handler, action->flags, -				per_cpu(timer_name, cpu), action->dev_id); -			per_cpu(timer_irq, cpu) = irq; +				per_cpu(xen_timer_name, cpu), action->dev_id); +			per_cpu(xen_timer_irq, cpu) = irq;  			break;  		case IA64_IPI_RESCHEDULE: -			snprintf(per_cpu(resched_name, cpu), -				 sizeof(per_cpu(resched_name, cpu)), +			snprintf(per_cpu(xen_resched_name, cpu), +				 sizeof(per_cpu(xen_resched_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR, cpu,  				action->handler, action->flags, -				per_cpu(resched_name, cpu), action->dev_id); -			per_cpu(resched_irq, cpu) = irq; +				per_cpu(xen_resched_name, cpu), action->dev_id); +			per_cpu(xen_resched_irq, cpu) = irq;  			break;  		case IA64_IPI_VECTOR: -			snprintf(per_cpu(ipi_name, cpu), -				 sizeof(per_cpu(ipi_name, cpu)), +			snprintf(per_cpu(xen_ipi_name, cpu), +				 sizeof(per_cpu(xen_ipi_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_ipi_to_irqhandler(XEN_IPI_VECTOR, cpu,  				action->handler, action->flags, -				per_cpu(ipi_name, cpu), action->dev_id); -			per_cpu(ipi_irq, cpu) = irq; +				per_cpu(xen_ipi_name, cpu), action->dev_id); +			per_cpu(xen_ipi_irq, cpu) = irq;  			break;  		case IA64_CMC_VECTOR: -			snprintf(per_cpu(cmc_name, cpu), -				 sizeof(per_cpu(cmc_name, cpu)), +			snprintf(per_cpu(xen_cmc_name, cpu), +				 sizeof(per_cpu(xen_cmc_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_virq_to_irqhandler(VIRQ_MCA_CMC, cpu, -						      action->handler, -						      action->flags, -						      per_cpu(cmc_name, cpu), -						      action->dev_id); -			per_cpu(cmc_irq, cpu) = irq; +						action->handler, +						action->flags, +						per_cpu(xen_cmc_name, cpu), +						action->dev_id); +			per_cpu(xen_cmc_irq, cpu) = irq;  			break;  		case IA64_CMCP_VECTOR: -			snprintf(per_cpu(cmcp_name, cpu), -				 sizeof(per_cpu(cmcp_name, cpu)), +			snprintf(per_cpu(xen_cmcp_name, cpu), +				 sizeof(per_cpu(xen_cmcp_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_ipi_to_irqhandler(XEN_CMCP_VECTOR, cpu, -						     action->handler, -						     action->flags, -						     per_cpu(cmcp_name, cpu), -						     action->dev_id); -			per_cpu(cmcp_irq, cpu) = irq; +						action->handler, +						action->flags, +						per_cpu(xen_cmcp_name, cpu), +						action->dev_id); +			per_cpu(xen_cmcp_irq, cpu) = irq;  			break;  		case IA64_CPEP_VECTOR: -			snprintf(per_cpu(cpep_name, cpu), -				 sizeof(per_cpu(cpep_name, cpu)), +			snprintf(per_cpu(xen_cpep_name, cpu), +				 sizeof(per_cpu(xen_cpep_name, cpu)),  				 "%s%d", action->name, cpu);  			irq = bind_ipi_to_irqhandler(XEN_CPEP_VECTOR, cpu, -						     action->handler, -						     action->flags, -						     per_cpu(cpep_name, cpu), -						     action->dev_id); -			per_cpu(cpep_irq, cpu) = irq; +						action->handler, +						action->flags, +						per_cpu(xen_cpep_name, cpu), +						action->dev_id); +			per_cpu(xen_cpep_irq, cpu) = irq;  			break;  		case IA64_CPE_VECTOR:  		case IA64_MCA_RENDEZ_VECTOR: @@ -275,30 +275,33 @@ unbind_evtchn_callback(struct notifier_block *nfb,  	if (action == CPU_DEAD) {  		/* Unregister evtchn.  */ -		if (per_cpu(cpep_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(cpep_irq, cpu), NULL); -			per_cpu(cpep_irq, cpu) = -1; +		if (per_cpu(xen_cpep_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_cpep_irq, cpu), +					       NULL); +			per_cpu(xen_cpep_irq, cpu) = -1;  		} -		if (per_cpu(cmcp_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(cmcp_irq, cpu), NULL); -			per_cpu(cmcp_irq, cpu) = -1; +		if (per_cpu(xen_cmcp_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_cmcp_irq, cpu), +					       NULL); +			per_cpu(xen_cmcp_irq, cpu) = -1;  		} -		if (per_cpu(cmc_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(cmc_irq, cpu), NULL); -			per_cpu(cmc_irq, cpu) = -1; +		if (per_cpu(xen_cmc_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_cmc_irq, cpu), NULL); +			per_cpu(xen_cmc_irq, cpu) = -1;  		} -		if (per_cpu(ipi_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(ipi_irq, cpu), NULL); -			per_cpu(ipi_irq, cpu) = -1; +		if (per_cpu(xen_ipi_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_ipi_irq, cpu), NULL); +			per_cpu(xen_ipi_irq, cpu) = -1;  		} -		if (per_cpu(resched_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(resched_irq, cpu), -						NULL); -			per_cpu(resched_irq, cpu) = -1; +		if (per_cpu(xen_resched_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), +					       NULL); +			per_cpu(xen_resched_irq, cpu) = -1;  		} -		if (per_cpu(timer_irq, cpu) >= 0) { -			unbind_from_irqhandler(per_cpu(timer_irq, cpu), NULL); -			per_cpu(timer_irq, cpu) = -1; +		if (per_cpu(xen_timer_irq, cpu) >= 0) { +			unbind_from_irqhandler(per_cpu(xen_timer_irq, cpu), +					       NULL); +			per_cpu(xen_timer_irq, cpu) = -1;  		}  	}  	return NOTIFY_OK;  |