Searched refs:nlbufsiz (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bridge/netfilter/
H A Debt_ulog.c15 * nlbufsiz:
17 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
48 static unsigned int nlbufsiz = NLMSG_GOODSIZE; variable
49 module_param(nlbufsiz, uint, 0600);
50 MODULE_PARM_DESC(nlbufsiz, "netlink buffer size (number of bytes) "
105 n = max(size, nlbufsiz);
142 if (size > nlbufsiz) {
143 PRINTR("ebt_ulog: Size %Zd needed, but nlbufsiz=%d\n",
144 size, nlbufsiz);
292 if (nlbufsiz >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dipt_ULOG.c14 * nlbufsiz:
16 * group is. e.g. If you say nlbufsiz=8192, up to eight kb of packets will
24 * Actually you should use nlbufsiz a bit smaller than PAGE_SIZE, since
25 * nlbufsiz is used with alloc_skb, which adds another
62 static unsigned int nlbufsiz = NLMSG_GOODSIZE; variable
63 module_param(nlbufsiz, uint, 0400);
64 MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
139 n = max(size, nlbufsiz);
408 if (nlbufsiz > 128*1024) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnfnetlink_log.c61 unsigned int nlbufsiz; /* netlink buffer allocation size */ member in struct:nfulnl_instance
162 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
260 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz) argument
265 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
267 else if (nlbufsiz > 131072)
270 inst->nlbufsiz = nlbufsiz;
649 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
847 __be32 nlbufsiz = local
850 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
[all...]

Completed in 105 milliseconds