On Wed, Nov 28, 2007 at 01:52:59PM -0500, Hideo AOKI wrote: > > +static inline int sk_wmem_schedule(struct sock *sk, int size) > +{ > + if (sk->sk_type == SOCK_STREAM) > + return sk_stream_wmem_schedule(sk, size); > + else if (sk->sk_type == SOCK_DGRAM) > + return sk_datagram_wmem_schedule(sk, size); > + else > + return 1; > +}
Why do we need this function? As far as I can see we always know whether it's a stream or datagram socket at compile time so doing a run-time test is pointless. Cheers, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html