Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

netfilter: nf_tables: Remove ununsed function nft_data_debug

It is never used, so can be removed.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

YueHaibing and committed by
Pablo Neira Ayuso
8a8b9047 1702ad79

-7
-7
include/net/netfilter/nf_tables.h
··· 148 148 memcpy(dst, src, len); 149 149 } 150 150 151 - static inline void nft_data_debug(const struct nft_data *data) 152 - { 153 - pr_debug("data[0]=%x data[1]=%x data[2]=%x data[3]=%x\n", 154 - data->data[0], data->data[1], 155 - data->data[2], data->data[3]); 156 - } 157 - 158 151 /** 159 152 * struct nft_ctx - nf_tables rule/set context 160 153 *