[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1272408192.2343.32.camel@edumazet-laptop>
Date: Wed, 28 Apr 2010 00:43:12 +0200
From: Eric Dumazet <eric.dumazet@...il.com>
To: Dimitris Michailidis <dm@...lsio.com>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH net-next] cxgb4: set skb->rxhash
Le mardi 27 avril 2010 à 15:20 -0700, Dimitris Michailidis a écrit :
> Implement the ->set_flags ethtool method to control NETIF_F_RXHASH and
> set skb->rxhash to the HW calculated hash accordingly.
>
> Signed-off-by: Dimitris Michailidis <dm@...lsio.com>
> skb_record_rx_queue(skb, rxq->rspq.idx);
> + if (rxq->rspq.netdev->features & NETIF_F_RXHASH)
> + skb->rxhash = ntohl(pkt->rsshdr.hash_val);
>
Its probably minor, but hash_val being a semi random 32bits value, you
can avoid the ntohl() conversion, using a (__force u32) cast ...
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists