Displaying 2 results from an estimated 2 matches for "nf_hook_desc".
2007 Apr 18
1
[Bridge] bridge at start up
...Good data point.
>
> I've been trying to figure out ways to decrease the number of
> args that get sent to nf_hook_slow but this would require
> some API changes unfortunately.
>
> One idea goes like this, we create little descriptors of the form:
>
> struct nf_hook_desc {
> int (*okfn)(struct sk_buff *);
> int pf;
> int hook;
> };
>
> Then NF_HOOK*() callsites do something like this:
>
> static const struct nf_hook_desc nf_ip_local_out = {
> .okfn = dst_output,
> .pf = PF_INET,
> .hook = NF_IP_LOCAL_OUT,
> };...
2007 Apr 18
3
[Bridge] Re: do_IRQ: stack overflow: 872..
On Fri, 07 Jan 2005 17:05:59 +0000
David Woodhouse <dwmw2@infradead.org> wrote:
> On Sat, 2004-12-18 at 08:50 +0100, Andi Kleen wrote:
> > It's not really an oops, just a warning that stack space got quiet
> > tight.
> >
> > The problem seems to be that the br netfilter code is nesting far too
> > deeply and recursing several times. Looks like a design