Skip to content

Commit 05a8248

Browse files
gerd-rauschdavem330
authored andcommitted
net/rds: Fix 'ib_evt_handler_call' element in 'rds_ib_stat_names'
All entries in 'rds_ib_stat_names' are stringified versions of the corresponding "struct rds_ib_statistics" element without the "s_"-prefix. Fix entry 'ib_evt_handler_call' to do the same. Fixes: f4f943c ("RDS: IB: ack more receive completions to improve performance") Signed-off-by: Gerd Rausch <gerd.rausch@oracle.com> Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 6efb971 commit 05a8248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/rds/ib_stats.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ DEFINE_PER_CPU_SHARED_ALIGNED(struct rds_ib_statistics, rds_ib_stats);
4242
static const char *const rds_ib_stat_names[] = {
4343
"ib_connect_raced",
4444
"ib_listen_closed_stale",
45-
"s_ib_evt_handler_call",
45+
"ib_evt_handler_call",
4646
"ib_tasklet_call",
4747
"ib_tx_cq_event",
4848
"ib_tx_ring_full",

0 commit comments

Comments
 (0)