#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/netlink.h>
#include <linux/netfilter.h>
#include <linux/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables_core.h>
#include <net/netfilter/nf_tables.h>
struct nft_last { … };
struct nft_last_priv { … };
static const struct nla_policy nft_last_policy[NFTA_LAST_MAX + 1] = …;
static int nft_last_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
const struct nlattr * const tb[])
{ … }
static void nft_last_eval(const struct nft_expr *expr,
struct nft_regs *regs, const struct nft_pktinfo *pkt)
{ … }
static int nft_last_dump(struct sk_buff *skb,
const struct nft_expr *expr, bool reset)
{ … }
static void nft_last_destroy(const struct nft_ctx *ctx,
const struct nft_expr *expr)
{ … }
static int nft_last_clone(struct nft_expr *dst, const struct nft_expr *src, gfp_t gfp)
{ … }
static const struct nft_expr_ops nft_last_ops = …;
struct nft_expr_type nft_last_type __read_mostly = …;