From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Vrabel Date: Thu, 07 Jul 2016 09:46:07 +0000 Subject: Re: [Xen-devel] [PATCH] xen-fbfront: correct return value checks on xenbus_scanf() Message-Id: <577E24DF.5000203@citrix.com> List-Id: References: <577E258502000078000FBE6F@prv-mh.provo.novell.com> In-Reply-To: <577E258502000078000FBE6F@prv-mh.provo.novell.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Jan Beulich , plagnioj@jcrosoft.com, tomi.valkeinen@ti.com Cc: Juergen Gross , xen-devel@lists.xenproject.org, Boris Ostrovsky , David Vrabel , linux-fbdev On 07/07/16 08:48, Jan Beulich wrote: > > Signed-off-by: Jan Beulich > --- > drivers/video/fbdev/xen-fbfront.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > --- 4.7-rc6-xenbus_scanf.orig/drivers/video/fbdev/xen-fbfront.c > +++ 4.7-rc6-xenbus_scanf/drivers/video/fbdev/xen-fbfront.c > @@ -658,13 +658,13 @@ InitWait: > goto InitWait; /* no InitWait seen yet, fudge it */ > > if (xenbus_scanf(XBT_NIL, info->xbdev->otherend, > - "request-update", "%d", &val) < 0) > + "request-update", "%d", &val) <= 0) > val = 0; > if (val) > info->update_wanted = 1; > > if (xenbus_scanf(XBT_NIL, dev->otherend, > - "feature-resize", "%d", &val) < 0) > + "feature-resize", "%d", &val) <= 0) xenbus_scanf() has: /* Single read and scanf: returns -errno or num scanned. */ ... if (ret = 0) return -ERANGE; ... So none of these patches are necessary. David