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

Commit 778b1ac7 authored by Julian Wiedmann's avatar Julian Wiedmann Committed by David S. Miller
Browse files

s390/qeth: indicate error when netdev allocation fails



Bailing out on allocation error is nice, but we also need to tell the
ccwgroup core that creating the qeth groupdev failed.

Fixes: d3d1b205 ("s390/qeth: allocate netdevice early")
Signed-off-by: default avatarJulian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cc4dfb7f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -5768,8 +5768,10 @@ static int qeth_core_probe_device(struct ccwgroup_device *gdev)
	qeth_update_from_chp_desc(card);

	card->dev = qeth_alloc_netdev(card);
	if (!card->dev)
	if (!card->dev) {
		rc = -ENOMEM;
		goto err_card;
	}

	qeth_determine_capabilities(card);
	enforced_disc = qeth_enforce_discipline(card);