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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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
47 static unsigned int nlbufsiz = NLMSG_GOODSIZE; variable
48 module_param(nlbufsiz, uint, 0600);
49 MODULE_PARM_DESC(nlbufsiz, "netlink buffer size (number of bytes) "
104 n = max(size, nlbufsiz);
140 if (size > nlbufsiz) {
141 pr_debug("Size %Zd needed, but nlbufsiz=%d\n", size, nlbufsiz);
291 if (nlbufsiz >
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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
60 static unsigned int nlbufsiz = NLMSG_GOODSIZE; variable
61 module_param(nlbufsiz, uint, 0400);
62 MODULE_PARM_DESC(nlbufsiz, "netlink buffer size");
137 n = max(size, nlbufsiz);
388 if (nlbufsiz > 128*1024) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dnfnetlink_log.c62 unsigned int nlbufsiz; /* netlink buffer allocation size */ member in struct:nfulnl_instance
170 inst->nlbufsiz = NFULNL_NLBUFSIZ_DEFAULT;
250 nfulnl_set_nlbufsiz(struct nfulnl_instance *inst, u_int32_t nlbufsiz) argument
255 if (nlbufsiz < NFULNL_NLBUFSIZ_DEFAULT)
257 else if (nlbufsiz > 131072)
260 inst->nlbufsiz = nlbufsiz;
644 inst->skb = nfulnl_alloc_skb(inst->nlbufsiz, size);
811 __be32 nlbufsiz = nla_get_be32(nfula[NFULA_CFG_NLBUFSIZ]); local
817 nfulnl_set_nlbufsiz(inst, ntohl(nlbufsiz));
[all...]

Completed in 40 milliseconds