[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1406634039-15030-1-git-send-email-_govind@gmx.com>
Date: Tue, 29 Jul 2014 17:10:36 +0530
From: Govindarajulu Varadarajan <_govind@....com>
To: davem@...emloft.net, ben@...adent.org.uk, netdev@...r.kernel.org
Cc: ssujith@...co.com, benve@...co.com,
Govindarajulu Varadarajan <_govind@....com>
Subject: [PATCH net-next v2 0/3] enic: Add support for rx_copybreak
The following series implements rx_copybreak.
dma_map_single()/dma_unmap_single() is more expensive than alloc_skb & memcpy
for smaller packets. By doing this we can reuse the dma buff which is already
mapped. This is very useful when iommu is on. The default skb copybreak value
is 256.
When iommu is on, we can go much higher than 256. All the drivers that supports
rx_copybreak provides module parameter to change this value. Since module
parameter is the least preferred way for changing driver values, this series
adds ethtool support for setting rx_copybreak.
v2:
Add new ethtool_cmd for DMA buffer parameters, instead of adding new members to
existing ethtool_ringparam.
Govindarajulu Varadarajan (3):
enic: implement rx_copybreak
ethtool: Add support for DMA buffer settings
enic: add ethtool support set/show rx_copybreak
drivers/net/ethernet/cisco/enic/enic.h | 1 +
drivers/net/ethernet/cisco/enic/enic_ethtool.c | 24 +++++++++++++
drivers/net/ethernet/cisco/enic/enic_main.c | 50 ++++++++++++++++++++++++--
include/linux/ethtool.h | 7 ++++
include/uapi/linux/ethtool.h | 16 +++++++++
net/core/ethtool.c | 32 +++++++++++++++++
6 files changed, 127 insertions(+), 3 deletions(-)
--
2.0.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists