WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] [NET]: Rename feature-tso to feature-gso-

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] [NET]: Rename feature-tso to feature-gso-tcpv4
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Mon, 03 Jul 2006 10:20:57 +0000
Delivery-date: Mon, 03 Jul 2006 03:29:54 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID be3e07723b734c664dfbde868e53ef6f9dac2b32
# Parent  addde2d2d97a7a5d399e4f6c41206cb303a7669b
[NET]: Rename feature-tso to feature-gso-tcpv4

This patch renames the name feature-tso to feature-gso-tcpv4 for future
expansion.

Signed-off-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx>
---
 linux-2.6-xen-sparse/drivers/xen/netback/xenbus.c    |    5 +++--
 linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c |    4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff -r addde2d2d97a -r be3e07723b73 
linux-2.6-xen-sparse/drivers/xen/netback/xenbus.c
--- a/linux-2.6-xen-sparse/drivers/xen/netback/xenbus.c Mon Jul 03 09:06:59 
2006 +0100
+++ b/linux-2.6-xen-sparse/drivers/xen/netback/xenbus.c Mon Jul 03 09:07:33 
2006 +0100
@@ -102,9 +102,10 @@ static int netback_probe(struct xenbus_d
                }
 
 #if 0 /* KAF: After the protocol is finalised. */
-               err = xenbus_printf(xbt, dev->nodename, "feature-tso", "%d", 1);
+               err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4",
+                                   "%d", 1);
                if (err) {
-                       message = "writing feature-tso";
+                       message = "writing feature-gso-tcpv4";
                        goto abort_transaction;
                }
 #endif
diff -r addde2d2d97a -r be3e07723b73 
linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c
--- a/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c      Mon Jul 03 
09:06:59 2006 +0100
+++ b/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c      Mon Jul 03 
09:07:33 2006 +0100
@@ -1098,8 +1098,8 @@ static int xennet_set_tso(struct net_dev
                struct netfront_info *np = netdev_priv(dev);
                int val;
 
-               if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-tso",
-                                "%d", &val) < 0)
+               if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
+                                "feature-gso-tcpv4", "%d", &val) < 0)
                        val = 0;
 #if 0 /* KAF: After the protocol is finalised. */
                if (!val)

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] [NET]: Rename feature-tso to feature-gso-tcpv4, Xen patchbot-unstable <=