Roland Dreier wrote: > > + stats->iw.ipInReceive = m.ipInReceive_hi + m.ipInReceive_lo; > > Surely all the code like this is wrong? Shouldn't it be more like > > stats->iw.ipInReceive = ((u64) m.ipInReceive_hi << 32) + > m.ipInReceive_lo; > > - R. > Hrrrm, I would think so! Steve.