]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
mac80211: cosmetics for minstrel_debugfs
authorKarl Beldan <karl.beldan@rivierawaves.com>
Wed, 17 Apr 2013 12:08:26 +0000 (14:08 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 17 Apr 2013 15:08:23 +0000 (17:08 +0200)
This changes the minstrel stats ouput from:

rate     throughput  ewma prob   this prob  this succ/attempt   success    attempts
 BCD   6         0.0        0.0        0.0          0(  0)          0           0

to:

rate      throughput  ewma prob  this prob  this succ/attempt   success    attempts
 BCD   6         0.0        0.0        0.0             0(  0)         0           0

Signed-off-by: Karl Beldan <karl.beldan@rivierawaves.com>
Acked-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/rc80211_minstrel_debugfs.c

index d1048348d399697306993b47c45988ef8602f96b..fd0b9ca1570e3ea92fba228b1824a4c99ddfff39 100644 (file)
@@ -68,7 +68,7 @@ minstrel_stats_open(struct inode *inode, struct file *file)
 
        file->private_data = ms;
        p = ms->buf;
-       p += sprintf(p, "rate     throughput  ewma prob   this prob  "
+       p += sprintf(p, "rate      throughput  ewma prob  this prob  "
                        "this succ/attempt   success    attempts\n");
        for (i = 0; i < mi->n_rates; i++) {
                struct minstrel_rate *mr = &mi->r[i];
@@ -86,7 +86,7 @@ minstrel_stats_open(struct inode *inode, struct file *file)
                eprob = MINSTREL_TRUNC(mr->probability * 1000);
 
                p += sprintf(p, "  %6u.%1u   %6u.%1u   %6u.%1u        "
-                               "%3u(%3u)   %8llu    %8llu\n",
+                               "   %3u(%3u)  %8llu    %8llu\n",
                                tp / 10, tp % 10,
                                eprob / 10, eprob % 10,
                                prob / 10, prob % 10,