Re: [PATCH - RFC] [1/2] 2.6 must-fix list - kernel error reporting

David S. Miller (davem@redhat.com)
Fri, 11 Jul 2003 22:41:42 -0700


On Sat, 12 Jul 2003 01:37:44 +1000 (EST)
James Morris <jmorris@intercode.com.au> wrote:

> Indeed, the kernel socket buffer fills up.
>
> I think this needs to be addressed in the netlink code, per the patch
> below.
...
> + /* Don't bother queuing skb if kernel socket has no input function */
> + if (nlk->pid == 0 && !nlk->data_ready)
> + goto no_dst;
> +

Oops, turns out this doesn't work. data_ready is never NULL, look at
how netlink_kernel_create() works.

Also, the broadcast case probably needs to be handled
too?

As an aside, to be honest what's so wrong with the socket receive
buffer filling up? The damage is limited to the receive buffer size
of the kernel netlink socket, but that's it.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/