From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux)) id 1chAZL-0002gc-HJ for barebox@lists.infradead.org; Fri, 24 Feb 2017 07:45:37 +0000 Date: Fri, 24 Feb 2017 08:45:13 +0100 From: Sascha Hauer Message-ID: <20170224074513.pxsqbvjd4uyuqndj@pengutronix.de> References: <20170223212841.12846-1-u.kleine-koenig@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20170223212841.12846-1-u.kleine-koenig@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH] lseek: ensure errno is set on failure and return -1 To: Uwe =?iso-8859-15?Q?Kleine-K=F6nig?= Cc: barebox@lists.infradead.org On Thu, Feb 23, 2017 at 10:28:41PM +0100, Uwe Kleine-K=F6nig wrote: > All error paths before calling the driver's lseek callback return -1 and > set errno. Do the same if the callback returns an error. > = > Signed-off-by: Uwe Kleine-K=F6nig > --- > fs/fs.c | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > = > diff --git a/fs/fs.c b/fs/fs.c > index 2b4659cfbb76..e7b696591433 100644 > --- a/fs/fs.c > +++ b/fs/fs.c > @@ -926,7 +926,13 @@ loff_t lseek(int fildes, loff_t offset, int whence) > goto out; > } > = > - return fsdrv->lseek(&f->fsdev->dev, f, pos); > + pos =3D fsdrv->lseek(&f->fsdev->dev, f, pos); > + if (pos < 0) { > + errno =3D -pos; > + return -1; > + } Before calling into the drivers lseek checks if the position is within the bounds of the file. So when fsdrv->lseek() returns successfully then the position must be the same that was passed in. I think we can just let fsdrv->lseek() return an error code rather than the file position. Sascha -- = Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox