aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sched/sch_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index 047ae62ff4fa..ecbdc6b42a9c 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -1216,7 +1216,8 @@ static int psched_show(struct seq_file *seq, void *v)
1216{ 1216{
1217 seq_printf(seq, "%08x %08x %08x %08x\n", 1217 seq_printf(seq, "%08x %08x %08x %08x\n",
1218 (u32)NSEC_PER_USEC, (u32)PSCHED_US2NS(1), 1218 (u32)NSEC_PER_USEC, (u32)PSCHED_US2NS(1),
1219 1000000, (u32)NSEC_PER_SEC/ktime_to_ns(KTIME_MONOTONIC_RES)); 1219 1000000,
1220 (u32)NSEC_PER_SEC/(u32)ktime_to_ns(KTIME_MONOTONIC_RES));
1220 1221
1221 return 0; 1222 return 0;
1222} 1223}