mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	net: macvlan: call netdev_lockdep_set_classes()
In case a qdisc is used on a macvlan device, we need to use different lockdep classes to avoid false positives. Use the new netdev_lockdep_set_classes() generic helper. Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									78e7a2ae87
								
							
						
					
					
						commit
						24ffd75200
					
				
					 1 changed files with 1 additions and 10 deletions
				
			
		| 
						 | 
				
			
			@ -788,7 +788,6 @@ static int macvlan_change_mtu(struct net_device *dev, int new_mtu)
 | 
			
		|||
 * "super class" of normal network devices; split their locks off into a
 | 
			
		||||
 * separate class since they always nest.
 | 
			
		||||
 */
 | 
			
		||||
static struct lock_class_key macvlan_netdev_xmit_lock_key;
 | 
			
		||||
static struct lock_class_key macvlan_netdev_addr_lock_key;
 | 
			
		||||
 | 
			
		||||
#define ALWAYS_ON_FEATURES \
 | 
			
		||||
| 
						 | 
				
			
			@ -809,20 +808,12 @@ static int macvlan_get_nest_level(struct net_device *dev)
 | 
			
		|||
	return ((struct macvlan_dev *)netdev_priv(dev))->nest_level;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void macvlan_set_lockdep_class_one(struct net_device *dev,
 | 
			
		||||
					  struct netdev_queue *txq,
 | 
			
		||||
					  void *_unused)
 | 
			
		||||
{
 | 
			
		||||
	lockdep_set_class(&txq->_xmit_lock,
 | 
			
		||||
			  &macvlan_netdev_xmit_lock_key);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static void macvlan_set_lockdep_class(struct net_device *dev)
 | 
			
		||||
{
 | 
			
		||||
	netdev_lockdep_set_classes(dev);
 | 
			
		||||
	lockdep_set_class_and_subclass(&dev->addr_list_lock,
 | 
			
		||||
				       &macvlan_netdev_addr_lock_key,
 | 
			
		||||
				       macvlan_get_nest_level(dev));
 | 
			
		||||
	netdev_for_each_tx_queue(dev, macvlan_set_lockdep_class_one, NULL);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static int macvlan_init(struct net_device *dev)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue