From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ding Tianhong Subject: [PATCH net 2/2] net: remove the unused function netdev_add_tso_features() Date: Wed, 8 Jan 2014 15:28:27 +0800 Message-ID: <52CCFE1B.7070201@huawei.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit To: Jay Vosburgh , Veaceslav Falico , Eric Dumazet , "David S. Miller" , Netdev Return-path: Received: from szxga03-in.huawei.com ([119.145.14.66]:48923 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754539AbaAHHav (ORCPT ); Wed, 8 Jan 2014 02:30:51 -0500 Sender: netdev-owner@vger.kernel.org List-ID: The function is only used for bonding and the bond has another function bond_add_tso_features() to instead of it, so remove it. Cc: Eric Dumazet Signed-off-by: Ding Tianhong --- include/linux/netdevice.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 51c0fe2..183cd8e 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -2985,16 +2985,6 @@ static inline netdev_features_t netdev_get_wanted_features( netdev_features_t netdev_increment_features(netdev_features_t all, netdev_features_t one, netdev_features_t mask); -/* Allow TSO being used on stacked device : - * Performing the GSO segmentation before last device - * is a performance improvement. - */ -static inline netdev_features_t netdev_add_tso_features(netdev_features_t features, - netdev_features_t mask) -{ - return netdev_increment_features(features, NETIF_F_ALL_TSO, mask); -} - int __netdev_update_features(struct net_device *dev); void netdev_update_features(struct net_device *dev); void netdev_change_features(struct net_device *dev); -- 1.8.0