mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	net: macsec: report real_dev features when HW offloading is enabled
This patch makes real_dev_feature propagation by MACSec offloaded device. Issue description: real_dev features are disabled upon macsec creation. Root cause: Features limitation (specific to SW MACSec limitation) is being applied to HW offloaded case as well. This causes 'set_features' request on the real_dev with reduced feature set due to chain propagation. Proposed solution: Report real_dev features when HW offloading is enabled. NB! MACSec offloaded device does not propagate VLAN offload features at the moment. This can potentially be added later on as a separate patch. Note: this patch requires HW offloading to be enabled by default in order to function properly. Signed-off-by: Mark Starovoytov <mstarovoitov@marvell.com> Signed-off-by: Igor Russkikh <irusskikh@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									b62c362450
								
							
						
					
					
						commit
						c850240b6c
					
				
					 1 changed files with 22 additions and 4 deletions
				
			
		| 
						 | 
					@ -2633,6 +2633,10 @@ static int macsec_upd_offload(struct sk_buff *skb, struct genl_info *info)
 | 
				
			||||||
		goto rollback;
 | 
							goto rollback;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	rtnl_unlock();
 | 
						rtnl_unlock();
 | 
				
			||||||
 | 
						/* Force features update, since they are different for SW MACSec and
 | 
				
			||||||
 | 
						 * HW offloading cases.
 | 
				
			||||||
 | 
						 */
 | 
				
			||||||
 | 
						netdev_update_features(dev);
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
rollback:
 | 
					rollback:
 | 
				
			||||||
| 
						 | 
					@ -3399,9 +3403,16 @@ static netdev_tx_t macsec_start_xmit(struct sk_buff *skb,
 | 
				
			||||||
	return ret;
 | 
						return ret;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MACSEC_FEATURES \
 | 
					#define SW_MACSEC_FEATURES \
 | 
				
			||||||
	(NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
 | 
						(NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* If h/w offloading is enabled, use real device features save for
 | 
				
			||||||
 | 
					 *   VLAN_FEATURES - they require additional ops
 | 
				
			||||||
 | 
					 *   HW_MACSEC - no reason to report it
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
 | 
					#define REAL_DEV_FEATURES(dev) \
 | 
				
			||||||
 | 
						((dev)->features & ~(NETIF_F_VLAN_FEATURES | NETIF_F_HW_MACSEC))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int macsec_dev_init(struct net_device *dev)
 | 
					static int macsec_dev_init(struct net_device *dev)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	struct macsec_dev *macsec = macsec_priv(dev);
 | 
						struct macsec_dev *macsec = macsec_priv(dev);
 | 
				
			||||||
| 
						 | 
					@ -3418,8 +3429,12 @@ static int macsec_dev_init(struct net_device *dev)
 | 
				
			||||||
		return err;
 | 
							return err;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	dev->features = real_dev->features & MACSEC_FEATURES;
 | 
						if (macsec_is_offloaded(macsec)) {
 | 
				
			||||||
	dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
 | 
							dev->features = REAL_DEV_FEATURES(real_dev);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							dev->features = real_dev->features & SW_MACSEC_FEATURES;
 | 
				
			||||||
 | 
							dev->features |= NETIF_F_LLTX | NETIF_F_GSO_SOFTWARE;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	dev->needed_headroom = real_dev->needed_headroom +
 | 
						dev->needed_headroom = real_dev->needed_headroom +
 | 
				
			||||||
			       MACSEC_NEEDED_HEADROOM;
 | 
								       MACSEC_NEEDED_HEADROOM;
 | 
				
			||||||
| 
						 | 
					@ -3448,7 +3463,10 @@ static netdev_features_t macsec_fix_features(struct net_device *dev,
 | 
				
			||||||
	struct macsec_dev *macsec = macsec_priv(dev);
 | 
						struct macsec_dev *macsec = macsec_priv(dev);
 | 
				
			||||||
	struct net_device *real_dev = macsec->real_dev;
 | 
						struct net_device *real_dev = macsec->real_dev;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	features &= (real_dev->features & MACSEC_FEATURES) |
 | 
						if (macsec_is_offloaded(macsec))
 | 
				
			||||||
 | 
							return REAL_DEV_FEATURES(real_dev);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						features &= (real_dev->features & SW_MACSEC_FEATURES) |
 | 
				
			||||||
		    NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
 | 
							    NETIF_F_GSO_SOFTWARE | NETIF_F_SOFT_FEATURES;
 | 
				
			||||||
	features |= NETIF_F_LLTX;
 | 
						features |= NETIF_F_LLTX;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue