Message ID | 914b48be-2373-5b38-83f5-e0d917dd139d@oracle.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | [net] net/rds: Fix 'ib_evt_handler_call' element in 'rds_ib_stat_names' | expand |
On 9/12/19 1:49 PM, Gerd Rausch wrote: > 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: f4f943c958a2 ("RDS: IB: ack more receive completions to improve performance") > Signed-off-by: Gerd Rausch <gerd.rausch@oracle.com> > --- Thanks Gerd !! Acked-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
From: Gerd Rausch <gerd.rausch@oracle.com> Date: Thu, 12 Sep 2019 13:49:41 -0700 (PDT) > 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: f4f943c958a2 ("RDS: IB: ack more receive completions to improve performance") > Signed-off-by: Gerd Rausch <gerd.rausch@oracle.com> Applied, thanks.
diff --git a/net/rds/ib_stats.c b/net/rds/ib_stats.c index 9252ad126335..ac46d8961b61 100644 --- a/net/rds/ib_stats.c +++ b/net/rds/ib_stats.c @@ -42,7 +42,7 @@ DEFINE_PER_CPU_SHARED_ALIGNED(struct rds_ib_statistics, rds_ib_stats); static const char *const rds_ib_stat_names[] = { "ib_connect_raced", "ib_listen_closed_stale", - "s_ib_evt_handler_call", + "ib_evt_handler_call", "ib_tasklet_call", "ib_tx_cq_event", "ib_tx_ring_full",
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: f4f943c958a2 ("RDS: IB: ack more receive completions to improve performance") Signed-off-by: Gerd Rausch <gerd.rausch@oracle.com> --- net/rds/ib_stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)