mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	genirq/proc: Use the the accessor to report the effective affinity
If CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK is defined, but that the interrupt is not single target, the effective affinity reported in /proc/irq/x/effective_affinity will be empty, which is not the truth. Instead, use the accessor to report the affinity, which will pick the right mask. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andrew Lunn <andrew@lunn.ch> Cc: James Hogan <james.hogan@imgtec.com> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Paul Burton <paul.burton@imgtec.com> Cc: Chris Zankel <chris@zankel.net> Cc: Kevin Cernekee <cernekee@gmail.com> Cc: Wei Xu <xuwei5@hisilicon.com> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: Gregory Clement <gregory.clement@free-electrons.com> Cc: Matt Redfearn <matt.redfearn@imgtec.com> Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Link: http://lkml.kernel.org/r/20170818083925.10108-3-marc.zyngier@arm.com
This commit is contained in:
		
							parent
							
								
									74def747bc
								
							
						
					
					
						commit
						6bc6d4abd2
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -61,7 +61,7 @@ static int show_irq_affinity(int type, struct seq_file *m)
 | 
				
			||||||
	case EFFECTIVE:
 | 
						case EFFECTIVE:
 | 
				
			||||||
	case EFFECTIVE_LIST:
 | 
						case EFFECTIVE_LIST:
 | 
				
			||||||
#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
 | 
					#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
 | 
				
			||||||
		mask = desc->irq_common_data.effective_affinity;
 | 
							mask = irq_data_get_effective_affinity_mask(&desc->irq_data);
 | 
				
			||||||
		break;
 | 
							break;
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
		return -EINVAL;
 | 
							return -EINVAL;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue