Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9121b15b authored by Juergen Gross's avatar Juergen Gross Committed by Bartlomiej Zolnierkiewicz
Browse files

xen, fbfront: fix connecting to backend



Connecting to the backend isn't working reliably in xen-fbfront: in
case XenbusStateInitWait of the backend has been missed the backend
transition to XenbusStateConnected will trigger the connected state
only without doing the actions required when the backend has
connected.

Cc: stable@vger.kernel.org
Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
Reviewed-by: default avatarBoris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
parent cfc5b2b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -643,7 +643,6 @@ static void xenfb_backend_changed(struct xenbus_device *dev,
		break;

	case XenbusStateInitWait:
InitWait:
		xenbus_switch_state(dev, XenbusStateConnected);
		break;

@@ -654,7 +653,8 @@ static void xenfb_backend_changed(struct xenbus_device *dev,
		 * get Connected twice here.
		 */
		if (dev->state != XenbusStateConnected)
			goto InitWait; /* no InitWait seen yet, fudge it */
			/* no InitWait seen yet, fudge it */
			xenbus_switch_state(dev, XenbusStateConnected);

		if (xenbus_read_unsigned(info->xbdev->otherend,
					 "request-update", 0))