Searched refs:cdev_device (Results 1 – 3 of 3) sorted by relevance
/linux-6.6.21/drivers/nvme/host/ |
D | nvme.h | 461 struct device cdev_device; member 518 struct device cdev_device; member 857 int nvme_cdev_add(struct cdev *cdev, struct device *cdev_device, 859 void nvme_cdev_del(struct cdev *cdev, struct device *cdev_device);
|
D | multipath.c | 488 head->cdev_device.parent = &head->subsys->dev; in nvme_add_ns_head_cdev() 489 ret = dev_set_name(&head->cdev_device, "ng%dn%d", in nvme_add_ns_head_cdev() 493 ret = nvme_cdev_add(&head->cdev, &head->cdev_device, in nvme_add_ns_head_cdev() 886 nvme_cdev_del(&head->cdev, &head->cdev_device); in nvme_mpath_shutdown_disk()
|
D | core.c | 3320 void nvme_cdev_del(struct cdev *cdev, struct device *cdev_device) in nvme_cdev_del() argument 3322 cdev_device_del(cdev, cdev_device); in nvme_cdev_del() 3323 put_device(cdev_device); in nvme_cdev_del() 3326 int nvme_cdev_add(struct cdev *cdev, struct device *cdev_device, in nvme_cdev_add() argument 3334 cdev_device->devt = MKDEV(MAJOR(nvme_ns_chr_devt), minor); in nvme_cdev_add() 3335 cdev_device->class = nvme_ns_chr_class; in nvme_cdev_add() 3336 cdev_device->release = nvme_cdev_rel; in nvme_cdev_add() 3337 device_initialize(cdev_device); in nvme_cdev_add() 3340 ret = cdev_device_add(cdev, cdev_device); in nvme_cdev_add() 3342 put_device(cdev_device); in nvme_cdev_add() [all …]
|