Searched refs:MINORBITS (Results 1 – 25 of 30) sorted by relevance
12
/linux/include/linux/ |
A D | kdev_t.h | 7 #define MINORBITS 20 macro 8 #define MINORMASK ((1U << MINORBITS) - 1) 10 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS)) 12 #define MKDEV(ma,mi) (((ma) << MINORBITS) | (mi))
|
A D | tty.h | 26 #define NR_UNIX98_PTY_MAX (1 << MINORBITS) /* Absolute limit */
|
/linux/tools/lib/traceevent/plugins/ |
A D | plugin_jbd2.c | 12 #define MINORBITS 20 macro 13 #define MINORMASK ((1U << MINORBITS) - 1) 15 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
|
/linux/tools/testing/selftests/bpf/progs/ |
A D | bpf_iter_task_vma.c | 15 #define MINORBITS 20 macro 16 #define MINORMASK ((1U << MINORBITS) - 1) 17 #define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS))
|
/linux/arch/x86/kernel/cpu/resctrl/ |
A D | pseudo_lock.c | 47 static unsigned long pseudo_lock_minor_avail = GENMASK(MINORBITS, 0); 118 first_bit = find_first_bit(&pseudo_lock_minor_avail, MINORBITS); in pseudo_lock_minor_get() 120 if (first_bit == MINORBITS) in pseudo_lock_minor_get()
|
/linux/drivers/block/ |
A D | brd.c | 465 if ((1U << MINORBITS) % max_part != 0) in brd_check_and_reset_par()
|
A D | virtio_blk.c | 768 err = ida_simple_get(&vd_index_ida, 0, minor_to_index(1 << MINORBITS), in virtblk_probe()
|
A D | loop.c | 2225 if (max_loop > 1UL << (MINORBITS - part_shift)) { in loop_init()
|
A D | nbd.c | 2491 if (nbds_max > 1UL << (MINORBITS - part_shift)) in nbd_init()
|
/linux/drivers/mtd/ |
A D | mtdchar.c | 1217 ret = __register_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, in init_mtdchar() 1230 __unregister_chrdev(MTD_CHAR_MAJOR, 0, 1 << MINORBITS, "mtd"); in cleanup_mtdchar()
|
/linux/drivers/block/aoe/ |
A D | aoedev.c | 35 #define N_DEVS ((1U<<MINORBITS)/AOE_PARTITIONS)
|
/linux/drivers/android/ |
A D | binderfs.c | 43 #define BINDERFS_MAX_MINOR (1U << MINORBITS)
|
/linux/drivers/md/ |
A D | dm.c | 1627 if (minor >= (1 << MINORBITS)) in specific_minor() 1649 r = idr_alloc(&_minor_idr, MINOR_ALLOCED, 0, 1 << MINORBITS, GFP_NOWAIT); in next_free_minor() 2089 if (MAJOR(dev) != _major || minor >= (1 << MINORBITS)) in dm_get_md()
|
/linux/drivers/uio/ |
A D | uio.c | 28 #define UIO_MAX_DEVICES (1U << MINORBITS)
|
/linux/drivers/s390/block/ |
A D | dcssblk.c | 150 for (minor = 0; minor < (1<<MINORBITS); minor++) { in dcssblk_assign_free_minor()
|
A D | dasd_int.h | 14 #define DASD_PER_MAJOR (1U << (MINORBITS - DASD_PARTN_BITS))
|
/linux/drivers/net/wwan/ |
A D | wwan_core.c | 21 #define WWAN_MAX_MINORS (1 << MINORBITS)
|
/linux/drivers/firewire/ |
A D | core-device.c | 1029 minor = idr_alloc(&fw_device_idr, device, 0, 1 << MINORBITS, in fw_device_init()
|
/linux/block/ |
A D | genhd.c | 52 #define NR_EXT_DEVT (1 << MINORBITS)
|
/linux/drivers/staging/pi433/ |
A D | pi433_if.c | 48 #define N_PI433_MINORS BIT(MINORBITS) /*32*/ /* ... up to 256 */
|
/linux/drivers/vhost/ |
A D | vdpa.c | 34 #define VHOST_VDPA_DEV_MAX (1U << MINORBITS)
|
/linux/fs/ |
A D | super.c | 1032 dev = ida_alloc_range(&unnamed_dev_ida, 1, (1 << MINORBITS) - 1, in get_anon_bdev()
|
/linux/drivers/net/ |
A D | tap.c | 102 #define TAP_NUM_DEVS (1U << MINORBITS)
|
/linux/drivers/vdpa/vdpa_user/ |
A D | vduse_dev.c | 37 #define VDUSE_DEV_MAX (1U << MINORBITS)
|
/linux/drivers/block/rnbd/ |
A D | rnbd-clt.c | 1463 ret = ida_simple_get(&index_ida, 0, 1 << (MINORBITS - RNBD_PART_BITS), in init_dev()
|
Completed in 93 milliseconds
12