On Thu, Apr 11, 2013 at 08:38:37AM -0700, Linus Torvalds wrote: > /* We know one of the values has a bit set in the high 32 bits */ > for (;;) { > /* Make sure "stime" is the bigger of stime/rtime */ > if (rtime > stime) { > u64 tmp = stime; stime = rtime; rtime = tmp; > }
For most workloads rtime is bigger than stime, so swapping those would save some cycles on common cases. Otherwise this algorithm looks great. Thanks Stanislaw -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/