diff options
| author | Navdeep Parhar <np@FreeBSD.org> | 2018-10-25 01:20:32 +0000 |
|---|---|---|
| committer | Navdeep Parhar <np@FreeBSD.org> | 2018-10-25 01:20:32 +0000 |
| commit | b5da13f72d475d72dfb59cfc6e4ff3476a97f5e5 (patch) | |
| tree | e750c51b75927c3070fc5e417879267c5667765a | |
| parent | 90809c673e8eddb1786f5302c5e13c4ce18d1685 (diff) | |
Notes
| -rw-r--r-- | sys/dev/cxgbe/t4_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/cxgbe/t4_main.c b/sys/dev/cxgbe/t4_main.c index 0f6db6aa8dbc..e292713b5461 100644 --- a/sys/dev/cxgbe/t4_main.c +++ b/sys/dev/cxgbe/t4_main.c @@ -6067,6 +6067,8 @@ vi_sysctls(struct vi_info *vi) &vi->first_rxq, 0, "index of first rx queue"); SYSCTL_ADD_INT(ctx, children, OID_AUTO, "first_txq", CTLFLAG_RD, &vi->first_txq, 0, "index of first tx queue"); + SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "rss_base", CTLFLAG_RD, NULL, + vi->rss_base, "start of RSS indirection table"); SYSCTL_ADD_UINT(ctx, children, OID_AUTO, "rss_size", CTLFLAG_RD, NULL, vi->rss_size, "size of RSS indirection table"); |
