mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	x86: HPET_MSI change IRQ affinity in process context when it is disabled
Change the IRQ affinity in the process context when the IRQ is disabled. Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> Signed-off-by: Shaohua Li <shaohua.li@intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
		
							parent
							
								
									1f3addcf2d
								
							
						
					
					
						commit
						932775a4ab
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -87,10 +87,11 @@ int irq_set_affinity(unsigned int irq, cpumask_t cpumask)
 | 
				
			||||||
		return -EINVAL;
 | 
							return -EINVAL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_GENERIC_PENDING_IRQ
 | 
					#ifdef CONFIG_GENERIC_PENDING_IRQ
 | 
				
			||||||
	if (desc->status & IRQ_MOVE_PCNTXT) {
 | 
						if (desc->status & IRQ_MOVE_PCNTXT || desc->status & IRQ_DISABLED) {
 | 
				
			||||||
		unsigned long flags;
 | 
							unsigned long flags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		spin_lock_irqsave(&desc->lock, flags);
 | 
							spin_lock_irqsave(&desc->lock, flags);
 | 
				
			||||||
 | 
							desc->affinity = cpumask;
 | 
				
			||||||
		desc->chip->set_affinity(irq, cpumask);
 | 
							desc->chip->set_affinity(irq, cpumask);
 | 
				
			||||||
		spin_unlock_irqrestore(&desc->lock, flags);
 | 
							spin_unlock_irqrestore(&desc->lock, flags);
 | 
				
			||||||
	} else
 | 
						} else
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue