diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-04-14 15:50:41 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-04-22 12:25:30 +0300 |
commit | 80616c0db8a26f030be78fea39f7c880c4263e55 (patch) | |
tree | 3c5bba97a4e8774b373f5857231766f67a76aa58 /net/mac80211/main.c | |
parent | 680a0daba74fed0bf30530c9b3e7e706cf29855f (diff) | |
download | linux-80616c0db8a26f030be78fea39f7c880c4263e55.tar.xz |
mac80211: allow segmentation offloads
Implement the necessary software segmentation on the normal
TX path so that fast-xmit can use segmentation offload if
the hardware (or driver) supports it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 6dd6dd47a9df..ea31f119234b 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c @@ -840,7 +840,8 @@ int ieee80211_register_hw(struct ieee80211_hw *hw) /* Only HW csum features are currently compatible with mac80211 */ feature_whitelist = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | - NETIF_F_HW_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA; + NETIF_F_HW_CSUM | NETIF_F_SG | NETIF_F_HIGHDMA | + NETIF_F_GSO_SOFTWARE; if (WARN_ON(hw->netdev_features & ~feature_whitelist)) return -EINVAL; |