From: Bin Meng Date: Tue, 22 Dec 2015 06:43:38 +0000 (-0800) Subject: dm: eth: Test 'ethrotate' before changing current ethernet device X-Git-Tag: v2016.01~22^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a671c4f2bea6215140b34726900d4f0aa5892e6a;p=platform%2Fkernel%2Fu-boot.git dm: eth: Test 'ethrotate' before changing current ethernet device In eth_current_changed(), the call to eth_get_dev() below has a side effect of rotating ethernet device if uc_priv->current == NULL. This is not what we want when 'ethrotate' variable is 'no'. Signed-off-by: Bin Meng Acked-by: Joe Hershberger Acked-by: Simon Glass Tested-by: Simon Glass --- diff --git a/net/eth.c b/net/eth.c index 6cf3a35..6c490a6 100644 --- a/net/eth.c +++ b/net/eth.c @@ -1039,6 +1039,17 @@ int eth_receive(void *packet, int length) static void eth_current_changed(void) { char *act = getenv("ethact"); + char *ethrotate; + + /* + * The call to eth_get_dev() below has a side effect of rotating + * ethernet device if uc_priv->current == NULL. This is not what + * we want when 'ethrotate' variable is 'no'. + */ + ethrotate = getenv("ethrotate"); + if ((ethrotate != NULL) && (strcmp(ethrotate, "no") == 0)) + return; + /* update current ethernet name */ if (eth_get_dev()) { if (act == NULL || strcmp(act, eth_get_name()) != 0)