Searched refs:devt (Results 1 – 1 of 1) sorted by relevance
75 static struct list_head *cuse_conntbl_head(dev_t devt) in cuse_conntbl_head() argument77 return &cuse_conntbl[(MAJOR(devt) + MINOR(devt)) % CUSE_CONNTBL_LEN]; in cuse_conntbl_head()113 dev_t devt = inode->i_cdev->dev; in cuse_open() local119 list_for_each_entry(pos, cuse_conntbl_head(devt), list) in cuse_open()120 if (pos->dev->devt == devt) { in cuse_open()315 dev_t devt; in cuse_process_init_reply() local336 devt = MKDEV(arg->dev_major, arg->dev_minor); in cuse_process_init_reply()337 if (!MAJOR(devt)) in cuse_process_init_reply()338 rc = alloc_chrdev_region(&devt, MINOR(devt), 1, devinfo.name); in cuse_process_init_reply()340 rc = register_chrdev_region(devt, 1, devinfo.name); in cuse_process_init_reply()[all …]