Whamcloud - gitweb
- corrected order of items in the 1st line of output of routerstat.
authorisaac <isaac>
Thu, 5 Mar 2009 17:25:10 +0000 (17:25 +0000)
committerisaac <isaac>
Thu, 5 Mar 2009 17:25:10 +0000 (17:25 +0000)
lnet/utils/routerstat.c

index 0d59dfc..e518022 100644 (file)
@@ -130,11 +130,11 @@ do_stat (int fd)
    if (last == 0.0) {
           printf ("M %lu(%lu) E %lu S %lu/%llu R %lu/%llu F %lu/%llu D %lu/%llu\n", 
                   new_counter.msgs_alloc, new_counter.msgs_max,
    if (last == 0.0) {
           printf ("M %lu(%lu) E %lu S %lu/%llu R %lu/%llu F %lu/%llu D %lu/%llu\n", 
                   new_counter.msgs_alloc, new_counter.msgs_max,
-                  new_counter.errors, 
-                  new_counter.send_count, new_counter.send_length,
-                  new_counter.recv_count, new_counter.recv_length,
-                  new_counter.route_count, new_counter.route_length, 
-                  new_counter.drop_count, new_counter.drop_length);
+                  new_counter.errors,
+                  new_counter.send_length, new_counter.send_count,
+                  new_counter.recv_length, new_counter.recv_count,
+                  new_counter.route_length, new_counter.route_count,
+                  new_counter.drop_length, new_counter.drop_count);
    } else {
           t = now - last;
 
    } else {
           t = now - last;