Merge tag 'riscv/for-v5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv...
[sfrench/cifs-2.6.git] / include / uapi / linux / netfilter / xt_nfacct.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _XT_NFACCT_MATCH_H
3 #define _XT_NFACCT_MATCH_H
4
5 #include <linux/netfilter/nfnetlink_acct.h>
6
7 struct nf_acct;
8
9 struct xt_nfacct_match_info {
10         char            name[NFACCT_NAME_MAX];
11         struct nf_acct  *nfacct;
12 };
13
14 struct xt_nfacct_match_info_v1 {
15         char            name[NFACCT_NAME_MAX];
16         struct nf_acct  *nfacct __attribute__((aligned(8)));
17 };
18
19 #endif /* _XT_NFACCT_MATCH_H */