[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [NET] loopback: Added support for TSO
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID bb46d03f5f1d59a41d2daeb3f30aced203eef1bd # Parent 2eac0e15e0c22169810a606182bc068713f1d5e3 [NET] loopback: Added support for TSO Just like SG, TSO support here is innate. So all we need to do is mark it as such. This patch also adds the ethtool control functions for SG. Signed-off-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> --- linux-2.6-xen-sparse/drivers/xen/netback/loopback.c | 5 +++++ 1 files changed, 5 insertions(+) diff -r 2eac0e15e0c2 -r bb46d03f5f1d linux-2.6-xen-sparse/drivers/xen/netback/loopback.c --- a/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c Wed Jun 28 12:03:19 2006 +0100 +++ b/linux-2.6-xen-sparse/drivers/xen/netback/loopback.c Wed Jun 28 12:03:57 2006 +0100 @@ -125,6 +125,10 @@ static struct ethtool_ops network_ethtoo { .get_tx_csum = ethtool_op_get_tx_csum, .set_tx_csum = ethtool_op_set_tx_csum, + .get_sg = ethtool_op_get_sg, + .set_sg = ethtool_op_set_sg, + .get_tso = ethtool_op_get_tso, + .set_tso = ethtool_op_set_tso, }; /* @@ -152,6 +156,7 @@ static void loopback_construct(struct ne dev->features = (NETIF_F_HIGHDMA | NETIF_F_LLTX | + NETIF_F_TSO | NETIF_F_SG | NETIF_F_IP_CSUM); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |