Skip to content

Commit

Permalink
Revert "block: remove devnode callback from struct block_device_opera…
Browse files Browse the repository at this point in the history
…tions"

This reverts commit 85d6ce5.

We're reinstating the pktcdvd driver, which needs this API.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
Jens Axboe committed Jan 4, 2023
1 parent ee4b4e2 commit 050a4f3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions block/genhd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1201,10 +1201,21 @@ struct class block_class = {
.dev_uevent = block_uevent,
};

static char *block_devnode(struct device *dev, umode_t *mode,
kuid_t *uid, kgid_t *gid)
{
struct gendisk *disk = dev_to_disk(dev);

if (disk->fops->devnode)
return disk->fops->devnode(disk, mode);
return NULL;
}

const struct device_type disk_type = {
.name = "disk",
.groups = disk_attr_groups,
.release = disk_release,
.devnode = block_devnode,
};

#ifdef CONFIG_PROC_FS
Expand Down
1 change: 1 addition & 0 deletions include/linux/blkdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,7 @@ struct block_device_operations {
void (*swap_slot_free_notify) (struct block_device *, unsigned long);
int (*report_zones)(struct gendisk *, sector_t sector,
unsigned int nr_zones, report_zones_cb cb, void *data);
char *(*devnode)(struct gendisk *disk, umode_t *mode);
/* returns the length of the identifier or a negative errno: */
int (*get_unique_id)(struct gendisk *disk, u8 id[16],
enum blk_unique_id id_type);
Expand Down

0 comments on commit 050a4f3

Please sign in to comment.