net: Change skb_get_rxhash to skb_get_hash
[linux-2.6-block.git] / drivers / net / tun.c
index 3c5a8d8cde5077bc0c2d39d2f0aadc4e7d4a6231..8569da24833633087948047db2b2a26eb66e9e4b 100644 (file)
@@ -358,7 +358,7 @@ static u16 tun_select_queue(struct net_device *dev, struct sk_buff *skb)
        rcu_read_lock();
        numqueues = ACCESS_ONCE(tun->numqueues);
 
-       txq = skb_get_rxhash(skb);
+       txq = skb_get_hash(skb);
        if (txq) {
                e = tun_flow_find(&tun->flows[tun_hashfn(txq)], txq);
                if (e)
@@ -1146,7 +1146,7 @@ static ssize_t tun_get_user(struct tun_struct *tun, struct tun_file *tfile,
        skb_reset_network_header(skb);
        skb_probe_transport_header(skb, 0);
 
-       rxhash = skb_get_rxhash(skb);
+       rxhash = skb_get_hash(skb);
        netif_rx_ni(skb);
 
        tun->dev->stats.rx_packets++;