cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

nfnetlink_acct.h (542B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _NFNL_ACCT_H_
      3#define _NFNL_ACCT_H_
      4
      5#include <uapi/linux/netfilter/nfnetlink_acct.h>
      6#include <net/net_namespace.h>
      7
      8enum {
      9	NFACCT_NO_QUOTA		= -1,
     10	NFACCT_UNDERQUOTA,
     11	NFACCT_OVERQUOTA,
     12};
     13
     14struct nf_acct;
     15
     16struct nf_acct *nfnl_acct_find_get(struct net *net, const char *filter_name);
     17void nfnl_acct_put(struct nf_acct *acct);
     18void nfnl_acct_update(const struct sk_buff *skb, struct nf_acct *nfacct);
     19int nfnl_acct_overquota(struct net *net, struct nf_acct *nfacct);
     20#endif /* _NFNL_ACCT_H */