public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] netfilter: x_tables: Merge xt_*.h and ipt_*.h files which has same name.
@ 2025-01-07  2:41 egyszeregy
  2025-01-07  2:41 ` [PATCH 01/10] netfilter: x_tables: Merge xt_DSCP.h to xt_dscp.h egyszeregy
                   ` (10 more replies)
  0 siblings, 11 replies; 31+ messages in thread
From: egyszeregy @ 2025-01-07  2:41 UTC (permalink / raw)
  To: fw, pablo, lorenzo, daniel, leitao, amiculas, kadlec, davem,
	dsahern, edumazet, kuba, pabeni, horms, netfilter-devel, coreteam,
	linux-kernel, netdev
  Cc: Benjamin Szőke

From: Benjamin Szőke <egyszeregy@freemail.hu>

Merge xt_*.h, ipt_*.h and ip6t_*.h header files, which has
same upper and lowercase name format.

Display information about deprecated xt_*.h, ipt_*.h files
at compile time. Recommended to use header files with
lowercase name format in the future.

Benjamin Szőke (10):
  netfilter: x_tables: Merge xt_DSCP.h to xt_dscp.h
  netfilter: x_tables: Merge xt_RATEEST.h to xt_rateest.h
  netfilter: x_tables: Merge xt_TCPMSS.h to xt_tcpmss.h
  netfilter: x_tables: Use consistent header guard
  netfilter: iptables: Merge ipt_ECN.h to ipt_ecn.h
  netfilter: iptables: Merge ipt_TTL.h to ipt_ttl.h
  netfilter: iptables: Merge ip6t_HL.h to ip6t_hl.h
  netfilter: Adjust code style of xt_*.h, ipt_*.h files.
  netfilter: Add message pragma for deprecated xt_*.h, ipt_*.h.
  netfilter: Use merged xt_*.h, ipt_*.h headers.

 include/uapi/linux/netfilter/xt_CONNMARK.h  |  8 +++---
 include/uapi/linux/netfilter/xt_DSCP.h      | 22 ++--------------
 include/uapi/linux/netfilter/xt_MARK.h      |  8 +++---
 include/uapi/linux/netfilter/xt_RATEEST.h   | 12 ++-------
 include/uapi/linux/netfilter/xt_TCPMSS.h    | 14 ++++------
 include/uapi/linux/netfilter/xt_connmark.h  |  7 +++--
 include/uapi/linux/netfilter/xt_dscp.h      | 26 +++++++++++++-----
 include/uapi/linux/netfilter/xt_mark.h      |  6 ++---
 include/uapi/linux/netfilter/xt_rateest.h   | 19 ++++++++++----
 include/uapi/linux/netfilter/xt_tcpmss.h    | 16 ++++++++----
 include/uapi/linux/netfilter_ipv4/ipt_ECN.h | 29 ++-------------------
 include/uapi/linux/netfilter_ipv4/ipt_TTL.h | 25 ++++--------------
 include/uapi/linux/netfilter_ipv4/ipt_ecn.h | 26 ++++++++++++++++++
 include/uapi/linux/netfilter_ipv4/ipt_ttl.h | 24 ++++++++++++-----
 include/uapi/linux/netfilter_ipv6/ip6t_HL.h | 26 ++++--------------
 include/uapi/linux/netfilter_ipv6/ip6t_hl.h | 23 +++++++++++-----
 net/ipv4/netfilter/ipt_ECN.c                |  2 +-
 net/netfilter/xt_DSCP.c                     |  2 +-
 net/netfilter/xt_HL.c                       |  4 +--
 net/netfilter/xt_RATEEST.c                  |  2 +-
 net/netfilter/xt_TCPMSS.c                   |  2 +-
 21 files changed, 148 insertions(+), 155 deletions(-)

-- 
2.43.5


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

end of thread, other threads:[~2025-01-09 15:00 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-07  2:41 [PATCH 00/10] netfilter: x_tables: Merge xt_*.h and ipt_*.h files which has same name egyszeregy
2025-01-07  2:41 ` [PATCH 01/10] netfilter: x_tables: Merge xt_DSCP.h to xt_dscp.h egyszeregy
2025-01-07 19:23   ` Jozsef Kadlecsik
2025-01-07 21:38     ` Szőke Benjamin
2025-01-08 20:11       ` Jozsef Kadlecsik
2025-01-08 21:08         ` Szőke Benjamin
2025-01-09 14:59           ` Jozsef Kadlecsik
2025-01-07  2:41 ` [PATCH 02/10] netfilter: x_tables: Merge xt_RATEEST.h to xt_rateest.h egyszeregy
2025-01-07  2:41 ` [PATCH 03/10] netfilter: x_tables: Merge xt_TCPMSS.h to xt_tcpmss.h egyszeregy
2025-01-07  2:41 ` [PATCH 04/10] netfilter: x_tables: Use consistent header guard egyszeregy
2025-01-07  2:41 ` [PATCH 05/10] netfilter: iptables: Merge ipt_ECN.h to ipt_ecn.h egyszeregy
2025-01-07 19:26   ` Jozsef Kadlecsik
2025-01-07 21:48     ` Szőke Benjamin
2025-01-08 20:15       ` Jozsef Kadlecsik
2025-01-07  2:41 ` [PATCH 06/10] netfilter: iptables: Merge ipt_TTL.h to ipt_ttl.h egyszeregy
2025-01-07  2:41 ` [PATCH 07/10] netfilter: iptables: Merge ip6t_HL.h to ip6t_hl.h egyszeregy
2025-01-07  2:41 ` [PATCH 08/10] netfilter: Adjust code style of xt_*.h, ipt_*.h files egyszeregy
2025-01-07 19:39   ` Jozsef Kadlecsik
2025-01-07 21:59     ` Szőke Benjamin
2025-01-08 20:20       ` Jozsef Kadlecsik
2025-01-08 21:18         ` Szőke Benjamin
2025-01-07  2:41 ` [PATCH 09/10] netfilter: Add message pragma for deprecated xt_*.h, ipt_*.h egyszeregy
2025-01-07 19:39   ` Jozsef Kadlecsik
2025-01-07 22:06     ` Szőke Benjamin
2025-01-07 22:38       ` Jan Engelhardt
2025-01-07 23:24         ` Szőke Benjamin
2025-01-08 20:51       ` Jozsef Kadlecsik
2025-01-08 21:38         ` Szőke Benjamin
2025-01-09 10:22           ` Przemek Kitszel
2025-01-07  2:41 ` [PATCH 10/10] netfilter: Use merged xt_*.h, ipt_*.h headers egyszeregy
2025-01-07 19:14 ` [PATCH 00/10] netfilter: x_tables: Merge xt_*.h and ipt_*.h files which has same name Jozsef Kadlecsik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox