From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f196.google.com ([209.85.192.196]:37721 "EHLO mail-pf0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932427AbeCFDFR (ORCPT ); Mon, 5 Mar 2018 22:05:17 -0500 Received: by mail-pf0-f196.google.com with SMTP id h11so7789211pfn.4 for ; Mon, 05 Mar 2018 19:05:17 -0800 (PST) From: Stephen Hemminger To: dsahern@gmail.com Cc: netdev@vger.kernel.org, Stephen Hemminger , Stephen Hemminger Subject: [PATCH iproute2-next 6/7] tcp_metrics; make tables const Date: Mon, 5 Mar 2018 19:05:00 -0800 Message-Id: <20180306030501.1289-7-stephen@networkplumber.org> In-Reply-To: <20180306030501.1289-1-stephen@networkplumber.org> References: <20180306030501.1289-1-stephen@networkplumber.org> Sender: netdev-owner@vger.kernel.org List-ID: From: Stephen Hemminger Signed-off-by: Stephen Hemminger --- ip/tcp_metrics.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ip/tcp_metrics.c b/ip/tcp_metrics.c index 7e2d9eb34b79..5f394765c62b 100644 --- a/ip/tcp_metrics.c +++ b/ip/tcp_metrics.c @@ -47,8 +47,8 @@ static int genl_family = -1; #define CMD_DEL 0x0002 /* delete, remove */ #define CMD_FLUSH 0x0004 /* flush */ -static struct { - char *name; +static const struct { + const char *name; int code; } cmds[] = { { "list", CMD_LIST }, @@ -59,7 +59,7 @@ static struct { { "flush", CMD_FLUSH }, }; -static char *metric_name[TCP_METRIC_MAX + 1] = { +static const char *metric_name[TCP_METRIC_MAX + 1] = { [TCP_METRIC_RTT] = "rtt", [TCP_METRIC_RTTVAR] = "rttvar", [TCP_METRIC_SSTHRESH] = "ssthresh", @@ -67,8 +67,7 @@ static char *metric_name[TCP_METRIC_MAX + 1] = { [TCP_METRIC_REORDERING] = "reordering", }; -static struct -{ +static struct { int flushed; char *flushb; int flushp; -- 2.16.1