Re: [NET]: TSO requires SG, enforce this at device registry.

From: Jeff Garzik
Date: Mon Oct 25 2004 - 00:52:07 EST


Linux Kernel Mailing List wrote:
diff -Nru a/net/core/dev.c b/net/core/dev.c
--- a/net/core/dev.c 2004-10-22 10:15:57 -07:00
+++ b/net/core/dev.c 2004-10-22 10:15:57 -07:00
@@ -2871,6 +2871,14 @@
dev->features &= ~NETIF_F_SG;
}
+ /* TSO requires that SG is present as well. */
+ if ((dev->features & NETIF_F_TSO) &&
+ !(dev->features & NETIF_F_SG)) {
+ printk("%s: Dropping NETIF_F_TSO since no SG feature.\n",
+ dev->name);
+ dev->features &= ~NETIF_F_TSO;
+ }


Although this patch is correct, I am pondering whether this fully covers the problems in the field.

There are currently two classes of problems I am seeing, that generate real-life bug reports:

1) Given current driver implementations of ethtool ioctls, sysadmin is free to create a combination of bits that are IMHO a bug. One can argue that this is an extension of "root can shoot himself in the foot", so who knows.

2) Programmers writing drivers do not appear to be clear that SG is required to tx-csum/tso, and also, should not be present without one or both of those bits set.

Jeff

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/