MINORBITS          29 block/genhd.c  #define MAX_EXT_DEVT		(1 << MINORBITS)
MINORBITS         344 block/genhd.c  	for (i = 0; i < MINORBITS / 2; i++) {
MINORBITS         346 block/genhd.c  		int high = minor & (1 << (MINORBITS - 1 - i));
MINORBITS         347 block/genhd.c  		int distance = MINORBITS - 1 - 2 * i;
MINORBITS         705 fs/super.c     	if ((dev & MAX_ID_MASK) == (1 << MINORBITS)) {
MINORBITS           5 include/linux/kdev_t.h #define MINORMASK	((1U << MINORBITS) - 1)
MINORBITS           7 include/linux/kdev_t.h #define MAJOR(dev)	((unsigned int) ((dev) >> MINORBITS))
MINORBITS           9 include/linux/kdev_t.h #define MKDEV(ma,mi)	(((ma) << MINORBITS) | (mi))
MINORBITS          25 include/linux/tty.h #define NR_UNIX98_PTY_MAX	(1 << MINORBITS) /* Absolute limit */