Blame view

lib/reciprocal_div.c 218 Bytes
6a2d7a955   Eric Dumazet   [PATCH] SLAB: use...
1
2
  #include <asm/div64.h>
  #include <linux/reciprocal_div.h>
8af2a218d   Eric Dumazet   sch_red: Adaptati...
3
  #include <linux/export.h>
6a2d7a955   Eric Dumazet   [PATCH] SLAB: use...
4
5
6
7
8
9
10
  
  u32 reciprocal_value(u32 k)
  {
  	u64 val = (1LL << 32) + (k - 1);
  	do_div(val, k);
  	return (u32)val;
  }
8af2a218d   Eric Dumazet   sch_red: Adaptati...
11
  EXPORT_SYMBOL(reciprocal_value);