Home
last modified time | relevance | path

Searched refs:nft_match (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/net/netfilter/
Dnft_compat.c631 struct nft_xt *nft_match; in nft_match_select_ops() local
646 list_for_each_entry(nft_match, &nft_match_list, head) { in nft_match_select_ops()
647 struct xt_match *match = nft_match->ops.data; in nft_match_select_ops()
653 return &nft_match->ops; in nft_match_select_ops()
662 nft_match = kzalloc(sizeof(struct nft_xt), GFP_KERNEL); in nft_match_select_ops()
663 if (nft_match == NULL) in nft_match_select_ops()
666 nft_match->ops.type = &nft_match_type; in nft_match_select_ops()
667 nft_match->ops.size = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize)); in nft_match_select_ops()
668 nft_match->ops.eval = nft_match_eval; in nft_match_select_ops()
669 nft_match->ops.init = nft_match_init; in nft_match_select_ops()
[all …]