On Sun, Aug 27, 2000 at 10:28:14PM +0200, Kenneth Johansson wrote:
> Arnaldo Carvalho de Melo wrote:
> 
> >  #include <linux/config.h>
> > @@ -510,10 +511,7 @@
> >         if (put_user(len, optlen))
> >                 return -EFAULT;
> >
> > -       if (copy_to_user(optval, &val, len))
> > -               return -EFAULT;
> > -
> > -       return 0;
> > +       return copy_to_user(optval, &val, len) ? -EFAULT : 0;
> >  }
> 
> What is this are you trying to compress the source code ?
> I like the old way better. I think it is faster to read and understand.

Same here.  Linus, I didn't actually interpret your mail on the subject as
proposing changes like the one above.  Care to enlighten this a bit ?

        Philipp Rumpf
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to