]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
xen: make use of xenbus_read_unsigned() in xen-scsifront
authorJuergen Gross <jgross@suse.com>
Mon, 31 Oct 2016 13:58:41 +0000 (14:58 +0100)
committerJuergen Gross <jgross@suse.com>
Mon, 7 Nov 2016 12:55:28 +0000 (13:55 +0100)
Use xenbus_read_unsigned() instead of xenbus_scanf() when possible.

Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: David Vrabel <david.vrabel@citrix.com>
drivers/scsi/xen-scsifront.c

index 9dc8687bf0480e53b2d89431ece47f8504fd5779..7e817c64f385135dd8c0a51e08fecbf2ecd3cace 100644 (file)
@@ -1060,13 +1060,9 @@ static void scsifront_read_backend_params(struct xenbus_device *dev,
                                          struct vscsifrnt_info *info)
 {
        unsigned int sg_grant, nr_segs;
-       int ret;
        struct Scsi_Host *host = info->host;
 
-       ret = xenbus_scanf(XBT_NIL, dev->otherend, "feature-sg-grant", "%u",
-                          &sg_grant);
-       if (ret != 1)
-               sg_grant = 0;
+       sg_grant = xenbus_read_unsigned(dev->otherend, "feature-sg-grant", 0);
        nr_segs = min_t(unsigned int, sg_grant, SG_ALL);
        nr_segs = max_t(unsigned int, nr_segs, VSCSIIF_SG_TABLESIZE);
        nr_segs = min_t(unsigned int, nr_segs,