aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2005-05-03 17:29:39 -0400
committerDavid S. Miller <davem@davemloft.net>2005-05-03 17:29:39 -0400
commitdb46edc6d3b66bf708a8f23a9aa89f63a49ebe33 (patch)
tree7b3d9568a5561b5344e98dc8d881481420b8e581 /net/core
parentf90a0a74b864fdc46737614f03b8868f4f31e3bf (diff)
[RTNETLINK] Cleanup rtnetlink_link tables
Converts remaining rtnetlink_link tables to use c99 designated initializers to make greping a little bit easier. Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/rtnetlink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 58a981806268..5fb70cfa1085 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -86,7 +86,7 @@ struct sock *rtnl;
86 86
87struct rtnetlink_link * rtnetlink_links[NPROTO]; 87struct rtnetlink_link * rtnetlink_links[NPROTO];
88 88
89static const int rtm_min[(RTM_MAX+1-RTM_BASE)/4] = 89static const int rtm_min[RTM_NR_FAMILIES] =
90{ 90{
91 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)), 91 [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)),
92 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)), 92 [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)),
@@ -102,7 +102,7 @@ static const int rtm_min[(RTM_MAX+1-RTM_BASE)/4] =
102 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)), 102 [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)),
103}; 103};
104 104
105static const int rta_max[(RTM_MAX+1-RTM_BASE)/4] = 105static const int rta_max[RTM_NR_FAMILIES] =
106{ 106{
107 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX, 107 [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX,
108 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX, 108 [RTM_FAM(RTM_NEWADDR)] = IFA_MAX,
@@ -641,7 +641,7 @@ static void rtnetlink_rcv(struct sock *sk, int len)
641 } while (rtnl && rtnl->sk_receive_queue.qlen); 641 } while (rtnl && rtnl->sk_receive_queue.qlen);
642} 642}
643 643
644static struct rtnetlink_link link_rtnetlink_table[RTM_MAX-RTM_BASE+1] = 644static struct rtnetlink_link link_rtnetlink_table[RTM_NR_MSGTYPES] =
645{ 645{
646 [RTM_GETLINK - RTM_BASE] = { .dumpit = rtnetlink_dump_ifinfo }, 646 [RTM_GETLINK - RTM_BASE] = { .dumpit = rtnetlink_dump_ifinfo },
647 [RTM_SETLINK - RTM_BASE] = { .doit = do_setlink }, 647 [RTM_SETLINK - RTM_BASE] = { .doit = do_setlink },