All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] - Trivial 2.6.8.1 /proc/net/x25/route is infinite when x25 routes > 0
@ 2004-08-20  7:09 Andrew Hendry
  0 siblings, 0 replies; only message in thread
From: Andrew Hendry @ 2004-08-20  7:09 UTC (permalink / raw)
  To: eis; +Cc: linux-x25, trivial

When displaying x25 routes:

route add --x25 1234/2 eth0
route add --x25 4321/2 eth0
cat /proc/net/x25/route
Is infinite

This patch makes x25_get_route_idx the same as x25_get_socket_idx which
works correctly. Applies to 2.6.8.1 and probably much older.

Andrew.


diff -up linux-2.6.8.1/net/x25/x25_proc.c.orig
linux-2.6.8.1/net/x25/x25_proc.c

--- linux-2.6.8.1/net/x25/x25_proc.c.orig       2004-08-20
17:02:43.311326384 +1000
+++ linux-2.6.8.1/net/x25/x25_proc.c    2004-08-20 16:38:42.491364312
+1000
@@ -32,10 +32,11 @@ static __inline__ struct x25_route *x25_
  
        list_for_each(route_entry, &x25_route_list) {
                rt = list_entry(route_entry, struct x25_route, node);
-               if (--pos)
-                       break;
+               if (!pos--)
+                       goto found;
        }
-
+       rt = NULL;
+found:
        return rt;
 }



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-08-20  7:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-20  7:09 [PATCH] - Trivial 2.6.8.1 /proc/net/x25/route is infinite when x25 routes > 0 Andrew Hendry

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.