Re: [PATCH] af_rose.c: s/suser/capable/ + micro cleanups

From: Kenneth Johansson (ken@canit.se)
Date: Sun Aug 27 2000 - 15:28:14 EST


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.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Aug 31 2000 - 21:00:19 EST