__round_mask       63 include/linux/kernel.h #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
__round_mask       64 include/linux/kernel.h #define round_down(x, y) ((x) & ~__round_mask(x, y))