From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50749) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVNsu-00006R-M6 for qemu-devel@nongnu.org; Tue, 10 Mar 2015 13:24:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YVNst-0001gH-FU for qemu-devel@nongnu.org; Tue, 10 Mar 2015 13:24:00 -0400 Received: from e28smtp01.in.ibm.com ([122.248.162.1]:49209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YVNss-0001e6-O9 for qemu-devel@nongnu.org; Tue, 10 Mar 2015 13:23:59 -0400 Received: from /spool/local by e28smtp01.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 10 Mar 2015 22:53:50 +0530 From: "Aneesh Kumar K.V" In-Reply-To: <1425966860-13605-1-git-send-email-mjt@msgid.tls.msk.ru> References: <1425966860-13605-1-git-send-email-mjt@msgid.tls.msk.ru> Date: Tue, 10 Mar 2015 22:53:46 +0530 Message-ID: <87mw3krckd.fsf@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH] 9pfs-proxy: tiny cleanups in proxy_pwritev and proxy_preadv List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Tokarev , qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org Michael Tokarev writes: > Don't compare syscall return with -1, use "<0" condition. > Don't introduce useless local variables when we already > have similar variable > Rename local variable to be consistent with other usages > > Signed-off-by: Michael Tokarev > --- > hw/9pfs/virtio-9p-proxy.c | 12 +++++------- > 1 file changed, 5 insertions(+), 7 deletions(-) > > diff --git a/hw/9pfs/virtio-9p-proxy.c b/hw/9pfs/virtio-9p-proxy.c > index 59c7445..a01804a 100644 > --- a/hw/9pfs/virtio-9p-proxy.c > +++ b/hw/9pfs/virtio-9p-proxy.c > @@ -696,9 +696,9 @@ static ssize_t proxy_preadv(FsContext *ctx, V9fsFidOpenState *fs, > #ifdef CONFIG_PREADV > return preadv(fs->fd, iov, iovcnt, offset); > #else > - int err = lseek(fs->fd, offset, SEEK_SET); > - if (err == -1) { > - return err; > + int ret = lseek(fs->fd, offset, SEEK_SET); > + if (err < 0) > + return ret; > } else { > return readv(fs->fd, iov, iovcnt); > } I am not sure this is needed, whether to use int err or int ret as the variable name is simply a matter of preference for the author. Also did you compile test the above ? (note: int ret followed by a check with variable name 'err'). > @@ -714,10 +714,8 @@ static ssize_t proxy_pwritev(FsContext *ctx, V9fsFidOpenState *fs, > #ifdef CONFIG_PREADV > ret = pwritev(fs->fd, iov, iovcnt, offset); > #else > - int err = lseek(fs->fd, offset, SEEK_SET); > - if (err == -1) { > - return err; > - } else { > + ret = lseek(fs->fd, offset, SEEK_SET); > + if (ret >= 0) { > ret = writev(fs->fd, iov, iovcnt); > } > #endif -aneesh