netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 100 network limit
@ 2003-08-28 18:00 Anton Blanchard
  2003-08-28 19:08 ` Andi Kleen
  0 siblings, 1 reply; 6+ messages in thread
From: Anton Blanchard @ 2003-08-28 18:00 UTC (permalink / raw)
  To: netdev


Hi,

We hit the 100 network naming limit :) Yes the comment is correct, we
need to fix the algorithm. dev_base_lock really starts to show up
(eg in dev_get_by_index), especially when doing IO to raw sockets
(does every packet to a raw socket result in a dev_get_by_index? Couldnt
we embed a pointer to the device in the socket?)

Anyway as a short term fix Jamal suggested making a sysctl for this
maximum. If fixing this all properly is out of the question for 2.6,
would the sysctl approach be satisfactory? The other option is to just
bump the limit and recognise that the user is on his own if performance
sucks.

Anton

diff -ru gr14/net/core/dev.c gr14_work/net/core/dev.c
--- gr14/net/core/dev.c	2003-08-18 13:40:43.000000000 -0500
+++ gr14_work/net/core/dev.c	2003-08-28 12:56:45.000000000 -0500
@@ -630,9 +630,9 @@
 		return -EINVAL;
 
 	/*
-	 * If you need over 100 please also fix the algorithm...
+	 * If you need over 200 please also fix the algorithm...
 	 */
-	for (i = 0; i < 100; i++) {
+	for (i = 0; i < 200; i++) {
 		snprintf(buf, sizeof(buf), name, i);
 		if (!__dev_get_by_name(buf)) {
 			strcpy(dev->name, buf);

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-08-29  3:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-28 18:00 100 network limit Anton Blanchard
2003-08-28 19:08 ` Andi Kleen
2003-08-28 21:46   ` Ben Greear
2003-08-28 23:41     ` David S. Miller
2003-08-29  3:45       ` Ben Greear
2003-08-29  0:03     ` Andi Kleen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).