Thats because they were wrong..
> + *             Jeroen Vreeken  :       Add check for sk->dead in 
> sock_def_write_space
>   *
>   * To Fix:
>   *
> @@ -1146,7 +1147,7 @@
>         /* Do not wake up a writer until he can make "significant"
>          * progress.  --DaveM
>          */
> -       if((atomic_read(&sk->wmem_alloc) << 1) <= sk->sndbuf) {
> +       if(!sk->dead && (atomic_read(&sk->wmem_alloc) << 1) <= sk->sndbuf) {
>                 if (sk->sleep && waitqueue_active(sk->sleep))
See 2.4.18-ac which has a newer update for this.
-
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/