On Tue, Nov 25, 2014 at 03:58:01PM +0100, Rasmus Villemoes wrote: > > I think days_since_boot was a lot clearer than daycode. In any case, > please make the comment and the code consistent. Yeah, I was going back and forth between days since the epoch and days since boot, but found it was more efficient to calculate the days since boot. Sure, I'll go back to days_since_boot. > You should probably divide by the number of seconds in a day, not the > number of jiffies in a day. Right, brain hiccup on my part, will fix. > Isn't div_u64 mostly for when the divisor is not known at compile time? > Technically, "(u64)uptime.tv_sec / 86400" is of course a u64/u64 division, > but the compiler should see that the divisor is only 32 bits and hence > should be able to generate code which is at least as efficient as > whatever inline asm the arch provides for u64/u32 divisions. The problem with doing u64/u64 divisions is that the compiler will call out to a (non-existent) library function on some architectures. For example, try compiling the following using: with "gcc -S -m32 foo.c" int main(int argc, char **argv) { unsigned long long t = time(0); printf("%llu\n", t / 86400); } You will find in the .S file the following: ... pushl $0 pushl $86400 pushl %edx pushl %eax call __udivdi3 ... It will work finn compiling for x86_64, but if you do this and push out a git branch, you will soon get a very nice e-mail from the ktest bot explaining how you've broken the build on the i386 architecture since the kernel doesn't provide __udivdi3. Hence if you are doing any kind of divisions involving u64, you have to use the functions in include/linux/math64.h, and div_u64 is, per math64.h: /** * div_u64 - unsigned 64bit divide with 32bit divisor * * This is the most common 64bit divide and should be used if possible, * as many 32bit archs can optimize this variant better than a full 64bit * divide. */ Cheers, - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html