Commit b779d0af authored by Joe Perches's avatar Joe Perches Committed by David S. Miller

brocade: Convert uses of __constant_<foo> to <foo>

The use of __constant_<foo> has been unnecessary for quite awhile now.

Make these uses consistent with the rest of the kernel.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 184593c7
...@@ -2845,13 +2845,11 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb, ...@@ -2845,13 +2845,11 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
} }
if (unlikely((gso_size + skb_transport_offset(skb) + if (unlikely((gso_size + skb_transport_offset(skb) +
tcp_hdrlen(skb)) >= skb->len)) { tcp_hdrlen(skb)) >= skb->len)) {
txqent->hdr.wi.opcode = txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
__constant_htons(BNA_TXQ_WI_SEND);
txqent->hdr.wi.lso_mss = 0; txqent->hdr.wi.lso_mss = 0;
BNAD_UPDATE_CTR(bnad, tx_skb_tso_too_short); BNAD_UPDATE_CTR(bnad, tx_skb_tso_too_short);
} else { } else {
txqent->hdr.wi.opcode = txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND_LSO);
__constant_htons(BNA_TXQ_WI_SEND_LSO);
txqent->hdr.wi.lso_mss = htons(gso_size); txqent->hdr.wi.lso_mss = htons(gso_size);
} }
...@@ -2865,7 +2863,7 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb, ...@@ -2865,7 +2863,7 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
htons(BNA_TXQ_WI_L4_HDR_N_OFFSET( htons(BNA_TXQ_WI_L4_HDR_N_OFFSET(
tcp_hdrlen(skb) >> 2, skb_transport_offset(skb))); tcp_hdrlen(skb) >> 2, skb_transport_offset(skb)));
} else { } else {
txqent->hdr.wi.opcode = __constant_htons(BNA_TXQ_WI_SEND); txqent->hdr.wi.opcode = htons(BNA_TXQ_WI_SEND);
txqent->hdr.wi.lso_mss = 0; txqent->hdr.wi.lso_mss = 0;
if (unlikely(skb->len > (bnad->netdev->mtu + ETH_HLEN))) { if (unlikely(skb->len > (bnad->netdev->mtu + ETH_HLEN))) {
...@@ -2876,11 +2874,10 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb, ...@@ -2876,11 +2874,10 @@ bnad_txq_wi_prepare(struct bnad *bnad, struct bna_tcb *tcb,
if (skb->ip_summed == CHECKSUM_PARTIAL) { if (skb->ip_summed == CHECKSUM_PARTIAL) {
u8 proto = 0; u8 proto = 0;
if (skb->protocol == __constant_htons(ETH_P_IP)) if (skb->protocol == htons(ETH_P_IP))
proto = ip_hdr(skb)->protocol; proto = ip_hdr(skb)->protocol;
#ifdef NETIF_F_IPV6_CSUM #ifdef NETIF_F_IPV6_CSUM
else if (skb->protocol == else if (skb->protocol == htons(ETH_P_IPV6)) {
__constant_htons(ETH_P_IPV6)) {
/* nexthdr may not be TCP immediately. */ /* nexthdr may not be TCP immediately. */
proto = ipv6_hdr(skb)->nexthdr; proto = ipv6_hdr(skb)->nexthdr;
} }
...@@ -3062,8 +3059,7 @@ bnad_start_xmit(struct sk_buff *skb, struct net_device *netdev) ...@@ -3062,8 +3059,7 @@ bnad_start_xmit(struct sk_buff *skb, struct net_device *netdev)
vect_id = 0; vect_id = 0;
BNA_QE_INDX_INC(prod, q_depth); BNA_QE_INDX_INC(prod, q_depth);
txqent = &((struct bna_txq_entry *)tcb->sw_q)[prod]; txqent = &((struct bna_txq_entry *)tcb->sw_q)[prod];
txqent->hdr.wi_ext.opcode = txqent->hdr.wi_ext.opcode = htons(BNA_TXQ_WI_EXTENSION);
__constant_htons(BNA_TXQ_WI_EXTENSION);
unmap = &unmap_q[prod]; unmap = &unmap_q[prod];
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment