Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.38-rc5 9 lines 159 B view raw
1#include <asm/div64.h> 2#include <linux/reciprocal_div.h> 3 4u32 reciprocal_value(u32 k) 5{ 6 u64 val = (1LL << 32) + (k - 1); 7 do_div(val, k); 8 return (u32)val; 9}