cxgbe(4): Show correct range of tids in sysctl_tids
The highest valid tid has to be adjusted for the hi-pri filter region. MFC after: 1 week Sponsored by: Chelsio Communications
This commit is contained in:
@@ -11594,7 +11594,7 @@ sysctl_tids(SYSCTL_HANDLER_ARGS)
|
||||
if (hashen) {
|
||||
if (x)
|
||||
sbuf_printf(sb, "%u-%u, ", t->tid_base, x - 1);
|
||||
sbuf_printf(sb, "%u-%u", y, t->ntids - 1);
|
||||
sbuf_printf(sb, "%u-%u", y, t->tid_base + t->ntids - 1);
|
||||
} else {
|
||||
sbuf_printf(sb, "%u-%u", t->tid_base, t->tid_base +
|
||||
t->ntids - 1);
|
||||
|
||||
Reference in New Issue
Block a user