I need to get the value of the fields last_rx and trans_start in a net_device struct ... but for some reason dev->last_rx is always 0 (trans_start has a valid value) ...why is this? Is there another field that gives this value?
here's a snippet
struct net_device *dev;
dev = first_net_device(&init_net);
while (dev)
{
printk(KERN_ALERT "last received time is %li\n", dev->last_rx );
printk(KERN_ALERT "last transmit time is %li\n", dev->trans_start );
dev = next_net_device(dev);
}
I'm writing a kernel module using linux kernel 2.6.35