netback: don't store invalid vif pointer

When xenvif_alloc() fails, it returns a non-NULL error indicator. To
avoid eventual races, we shouldn't store that into struct backend_info
as readers of it only check for NULL.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jan Beulich 2014-12-09 11:47:04 +00:00 коммит произвёл David S. Miller
Родитель ceaca9dc3c
Коммит f15650b7f9
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -404,6 +404,7 @@ static int backend_create_xenvif(struct backend_info *be)
int err; int err;
long handle; long handle;
struct xenbus_device *dev = be->dev; struct xenbus_device *dev = be->dev;
struct xenvif *vif;
if (be->vif != NULL) if (be->vif != NULL)
return 0; return 0;
@ -414,13 +415,13 @@ static int backend_create_xenvif(struct backend_info *be)
return (err < 0) ? err : -EINVAL; return (err < 0) ? err : -EINVAL;
} }
be->vif = xenvif_alloc(&dev->dev, dev->otherend_id, handle); vif = xenvif_alloc(&dev->dev, dev->otherend_id, handle);
if (IS_ERR(be->vif)) { if (IS_ERR(vif)) {
err = PTR_ERR(be->vif); err = PTR_ERR(vif);
be->vif = NULL;
xenbus_dev_fatal(dev, err, "creating interface"); xenbus_dev_fatal(dev, err, "creating interface");
return err; return err;
} }
be->vif = vif;
kobject_uevent(&dev->dev.kobj, KOBJ_ONLINE); kobject_uevent(&dev->dev.kobj, KOBJ_ONLINE);
return 0; return 0;