Commit 3c0cfc135829b98f7a4894938652f9ef78e24237

Authored by Patrick McHardy
Committed by David S. Miller
1 parent 32d1316b91

[NET_SCHED]: Show timer resolution instead of clock resolution in /proc/net/psched

The fourth parameter of /proc/net/psched is supposed to show the timer
resultion and is used by HTB userspace to calculate the necessary
burst rate. Currently we show the clock resolution, which results in a
too low burst rate when the two differ.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 4 additions and 1 deletions Side-by-side Diff

... ... @@ -1226,10 +1226,13 @@
1226 1226 #ifdef CONFIG_PROC_FS
1227 1227 static int psched_show(struct seq_file *seq, void *v)
1228 1228 {
  1229 + struct timespec ts;
  1230 +
  1231 + hrtimer_get_res(CLOCK_MONOTONIC, &ts);
1229 1232 seq_printf(seq, "%08x %08x %08x %08x\n",
1230 1233 (u32)NSEC_PER_USEC, (u32)PSCHED_US2NS(1),
1231 1234 1000000,
1232   - (u32)NSEC_PER_SEC/(u32)ktime_to_ns(KTIME_MONOTONIC_RES));
  1235 + (u32)NSEC_PER_SEC/(u32)ktime_to_ns(timespec_to_ktime(ts)));
1233 1236  
1234 1237 return 0;
1235 1238 }