Hi Eric, Sorry for the late response. I just need few clarifications.
*age = timeval_to_sec(&tv); >>>> + NLA_PUT_U32(skb, RTA_AGE, *age); >>> here, what happens if sizeof(time_t) is not 4 ? Did you mean that the above should be like this? NLA_PUT_U32(skb, RTA_AGE, (unsigned int) *age); return tv->tv_sec + (tv->tv_usec ? 1 : 0); is much faster So can we say that "usec" is *always *< 1000000 ? Regards, Varun - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html