On 13/02/2025 12:08, Joshua Lant wrote:
Changes from v4:
- [03/05] Fix error with single struct union for two distinct members.
- [04/05] Removed changes to ebt_replace_kernel
- [05/05] Extend headers to include all x_tables.h rather than in c files.
Joshua Lant (5): netfilter: Create new type for kernel pointers. x_tables.h: pointers to unions in uapi struct xt plugins: pointers to unions in uapi struct ebtables: pointers to unions in uapi struct xtables: move include to headers
I am glad to say that these patches are finally merged in morello/next! I've made a few small changes/fixes along the way:
* Squashed patch 5 into patch 3 (to preserve bisectability, as patch 3 would have otherwise broken the build - this is anyway a more logical split). * Moved __attribute__((aligned(8))) to the anonymous union itself, to avoid using it for each member (patch 3). * Removed leftover comments (patch 3 and 4). * Removed changes to struct xt_hashlimit_info(no support in the kernel since 2010) (patch 3). * Fixed your Signed-off-by (email tag missing <>) in all patches.
While at it I also merged a couple of fixes to silence warnings in !PCuABI, allowing a full allyesconfig build.
Thank you again for your patience and dedication to improving this series!
- Kevin
include/linux/netfilter.h | 6 +++++ include/uapi/linux/netfilter.h | 8 ++++++ include/uapi/linux/netfilter/x_tables.h | 18 +++++++++++-- include/uapi/linux/netfilter/xt_CT.h | 11 ++++++-- include/uapi/linux/netfilter/xt_IDLETIMER.h | 13 ++++++++-- include/uapi/linux/netfilter/xt_RATEEST.h | 7 +++++- include/uapi/linux/netfilter/xt_TEE.h | 7 +++++- include/uapi/linux/netfilter/xt_bpf.h | 13 ++++++++-- include/uapi/linux/netfilter/xt_connlimit.h | 6 ++++- include/uapi/linux/netfilter/xt_hashlimit.h | 25 ++++++++++++++++--- include/uapi/linux/netfilter/xt_limit.h | 7 +++++- include/uapi/linux/netfilter/xt_nfacct.h | 13 ++++++++-- include/uapi/linux/netfilter/xt_quota.h | 7 +++++- include/uapi/linux/netfilter/xt_rateest.h | 12 +++++++-- include/uapi/linux/netfilter/xt_statistic.h | 7 +++++- .../uapi/linux/netfilter_bridge/ebtables.h | 18 ++++++++++--- net/netfilter/xt_CT.c | 1 - net/netfilter/xt_IDLETIMER.c | 1 - net/netfilter/xt_RATEEST.c | 1 - net/netfilter/xt_TEE.c | 1 - net/netfilter/xt_bpf.c | 1 - net/netfilter/xt_connlimit.c | 1 - net/netfilter/xt_hashlimit.c | 1 - net/netfilter/xt_limit.c | 1 - net/netfilter/xt_nfacct.c | 1 - net/netfilter/xt_quota.c | 1 - net/netfilter/xt_rateest.c | 1 - net/netfilter/xt_statistic.c | 1 - 28 files changed, 153 insertions(+), 37 deletions(-)