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

Commit fa9859ef authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller
Browse files

netxen: Fix Unlikely(x) > y



The closing parenthesis was not on the right location.

Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Acked-by: default avatarDhananjay Phadke <dhananjay@netxen.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 49682864
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1714,7 +1714,7 @@ netxen_nic_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
	/* 4 fragments per cmd des */
	/* 4 fragments per cmd des */
	no_of_desc = (frag_count + 3) >> 2;
	no_of_desc = (frag_count + 3) >> 2;


	if (unlikely(no_of_desc + 2) > netxen_tx_avail(tx_ring)) {
	if (unlikely(no_of_desc + 2 > netxen_tx_avail(tx_ring))) {
		netif_stop_queue(netdev);
		netif_stop_queue(netdev);
		return NETDEV_TX_BUSY;
		return NETDEV_TX_BUSY;
	}
	}