[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CA+M3ks6XGmgxeDf89CFAP2sxtR8Tksend7bZz1o9EkDkxeyxNg@mail.gmail.com>
Date: Mon, 9 Oct 2017 11:21:55 +0200
From: Benjamin Gaignard <benjamin.gaignard@...aro.org>
To: Laura Abbott <labbott@...hat.com>,
Sumit Semwal <sumit.semwal@...aro.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Arve Hjønnevåg <arve@...roid.com>,
Riley Andrews <riandrews@...roid.com>,
Mark Brown <broonie@...nel.org>,
Dan Carpenter <dan.carpenter@...cle.com>
Cc: driverdevel <devel@...verdev.osuosl.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
"dri-devel@...ts.freedesktop.org" <dri-devel@...ts.freedesktop.org>,
linux-api@...r.kernel.org,
Benjamin Gaignard <benjamin.gaignard@...aro.org>
Subject: Re: [PATCH v5 1/2] staging: ion: simplify ioctl args checking function
2017-09-27 15:20 GMT+02:00 Benjamin Gaignard <benjamin.gaignard@...aro.org>:
> Make arguments checking more easy to read.
>
Hi Laura,
Even if we don't have found a solution for the second patch I believe
this one could be useful.
May I ask you your point of view on those few lines ?
Benjamin
> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@...aro.org>
> ---
> drivers/staging/android/ion/ion-ioctl.c | 11 +++++------
> 1 file changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/staging/android/ion/ion-ioctl.c b/drivers/staging/android/ion/ion-ioctl.c
> index d9f8b14..e26b786 100644
> --- a/drivers/staging/android/ion/ion-ioctl.c
> +++ b/drivers/staging/android/ion/ion-ioctl.c
> @@ -27,19 +27,18 @@ union ion_ioctl_arg {
>
> static int validate_ioctl_arg(unsigned int cmd, union ion_ioctl_arg *arg)
> {
> - int ret = 0;
> -
> switch (cmd) {
> case ION_IOC_HEAP_QUERY:
> - ret = arg->query.reserved0 != 0;
> - ret |= arg->query.reserved1 != 0;
> - ret |= arg->query.reserved2 != 0;
> + if (arg->query.reserved0 ||
> + arg->query.reserved1 ||
> + arg->query.reserved2)
> + return -EINVAL;
> break;
> default:
> break;
> }
>
> - return ret ? -EINVAL : 0;
> + return 0;
> }
>
> /* fix up the cases where the ioctl direction bits are incorrect */
> --
> 2.7.4
>
--
Benjamin Gaignard
Graphic Study Group
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
Powered by blists - more mailing lists