kni: fix debug build
authorFerruh Yigit <ferruh.yigit@intel.com>
Thu, 15 Sep 2016 12:06:44 +0000 (13:06 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 21 Sep 2016 16:06:08 +0000 (18:06 +0200)
Fix build error with Linux kernel >= v4.7

Fix compile error because of Linux API change, 'trans_start' field
removed from 'struct net_device'.

Linux: 9b36627acecd ("net: remove dev->trans_start")

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
lib/librte_eal/linuxapp/kni/kni_net.c

index fc82193..371bbfa 100644 (file)
@@ -508,7 +508,7 @@ kni_net_tx_timeout (struct net_device *dev)
        struct kni_dev *kni = netdev_priv(dev);
 
        KNI_DBG("Transmit timeout at %ld, latency %ld\n", jiffies,
-                       jiffies - dev->trans_start);
+                       jiffies - dev_trans_start(dev));
 
        kni->stats.tx_errors++;
        netif_wake_queue(dev);