netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH iproute2 00/22] misc cleanups
@ 2018-11-15 22:36 Stephen Hemminger
  2018-11-15 22:36 ` [PATCH iproute2 01/22] lib/ll_addr: whitespace and indent cleanup Stephen Hemminger
                   ` (22 more replies)
  0 siblings, 23 replies; 25+ messages in thread
From: Stephen Hemminger @ 2018-11-15 22:36 UTC (permalink / raw)
  To: netdev; +Cc: Stephen Hemminger

Code cleanup including:
   * make local functions static
   * drop dead code
   * whitespace code style cleanup

Stephen Hemminger (22):
  lib/ll_addr: whitespace and indent cleanup
  lib/utils: make local functions static
  lib/color: make local functions static
  lib/ll_map: make local function static
  libnetlnk: unused and local functions cleanup
  genl: remove dead code
  bridge: make local variables static
  ip: make flag names const/static
  ipmonitor: make local variable static
  ipxfrm: make local functions static
  tc: drop unused name_to_id function
  tipc: make cmd_find static
  tc/class: make filter variables static
  tc/police: make print_police static
  ss: make local variables static
  tc/pedit: make functions static
  tc/ematch: make local functions static
  tc/util: make local functions static
  tc/meta: make meta_table static and const
  tc/action: make variables static
  tc/pedit: use structure initialization
  rdma: make local functions static

 bridge/bridge.c      |  5 ++--
 bridge/monitor.c     |  2 +-
 genl/ctrl.c          | 71 --------------------------------------------
 genl/genl_utils.h    |  2 --
 include/color.h      |  2 --
 include/libnetlink.h |  7 -----
 include/ll_map.h     |  1 -
 include/names.h      |  1 -
 include/utils.h      |  5 ----
 ip/ipaddress.c       |  2 +-
 ip/ipmonitor.c       |  2 +-
 ip/ipxfrm.c          | 11 +++----
 ip/xfrm.h            |  9 ------
 ip/xfrm_monitor.c    |  2 +-
 lib/color.c          |  6 ++--
 lib/libnetlink.c     | 28 ++---------------
 lib/ll_addr.c        | 24 ++++++++-------
 lib/ll_map.c         |  2 +-
 lib/names.c          | 28 -----------------
 lib/utils.c          | 48 +++++-------------------------
 misc/ss.c            | 28 ++++++++---------
 rdma/rdma.h          | 11 -------
 rdma/utils.c         | 12 ++++----
 tc/em_meta.c         | 12 ++++----
 tc/m_action.c        |  4 +--
 tc/m_ematch.c        | 30 ++-----------------
 tc/m_ematch.h        |  1 -
 tc/m_pedit.c         | 33 +++++++++-----------
 tc/m_pedit.h         | 15 ----------
 tc/m_police.c        | 10 +++++--
 tc/p_eth.c           |  5 ++--
 tc/p_icmp.c          |  5 ++--
 tc/p_ip.c            |  5 ++--
 tc/p_ip6.c           |  5 ++--
 tc/p_tcp.c           |  5 ++--
 tc/p_udp.c           |  5 ++--
 tc/tc_class.c        |  6 ++--
 tc/tc_util.c         | 17 ++---------
 tc/tc_util.h         |  8 -----
 tipc/cmdl.c          |  2 +-
 tipc/cmdl.h          |  2 --
 41 files changed, 110 insertions(+), 369 deletions(-)

-- 
2.17.1

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2018-11-21  8:57 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-15 22:36 [PATCH iproute2 00/22] misc cleanups Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 01/22] lib/ll_addr: whitespace and indent cleanup Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 02/22] lib/utils: make local functions static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 03/22] lib/color: " Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 04/22] lib/ll_map: make local function static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 05/22] libnetlnk: unused and local functions cleanup Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 06/22] genl: remove dead code Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 07/22] bridge: make local variables static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 08/22] ip: make flag names const/static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 09/22] ipmonitor: make local variable static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 10/22] ipxfrm: make local functions static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 11/22] tc: drop unused name_to_id function Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 12/22] tipc: make cmd_find static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 13/22] tc/class: make filter variables static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 14/22] tc/police: make print_police static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 15/22] ss: make local variables static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 16/22] tc/pedit: make functions static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 17/22] tc/ematch: make local " Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 18/22] tc/util: " Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 19/22] tc/meta: make meta_table static and const Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 20/22] tc/action: make variables static Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 21/22] tc/pedit: use structure initialization Stephen Hemminger
2018-11-15 22:36 ` [PATCH iproute2 22/22] rdma: make local functions static Stephen Hemminger
2018-11-20 22:26   ` David Ahern
2018-11-17 23:19 ` [PATCH iproute2 00/22] misc cleanups David Ahern

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).