Skip to content

Commit

Permalink
block: export the diskseq in uevents
Browse files Browse the repository at this point in the history
Export the newly introduced diskseq in uevents:

    $ udevadm info /sys/class/block/* |grep -e DEVNAME -e DISKSEQ
    E: DEVNAME=/dev/loop0
    E: DISKSEQ=1
    E: DEVNAME=/dev/loop1
    E: DISKSEQ=2
    E: DEVNAME=/dev/loop2
    E: DISKSEQ=3
    E: DEVNAME=/dev/loop3
    E: DISKSEQ=4
    E: DEVNAME=/dev/loop4
    E: DISKSEQ=5
    E: DEVNAME=/dev/loop5
    E: DISKSEQ=6
    E: DEVNAME=/dev/loop6
    E: DISKSEQ=7
    E: DEVNAME=/dev/loop7
    E: DISKSEQ=8
    E: DEVNAME=/dev/nvme0n1
    E: DISKSEQ=9
    E: DEVNAME=/dev/nvme0n1p1
    E: DISKSEQ=9
    E: DEVNAME=/dev/nvme0n1p2
    E: DISKSEQ=9
    E: DEVNAME=/dev/nvme0n1p3
    E: DISKSEQ=9
    E: DEVNAME=/dev/nvme0n1p4
    E: DISKSEQ=9
    E: DEVNAME=/dev/nvme0n1p5
    E: DISKSEQ=9
    E: DEVNAME=/dev/sda
    E: DISKSEQ=10
    E: DEVNAME=/dev/sda1
    E: DISKSEQ=10
    E: DEVNAME=/dev/sda2
    E: DISKSEQ=10

Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Matteo Croce <[email protected]>
Tested-by: Luca Boccassi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
teknoraver authored and axboe committed Aug 2, 2021
1 parent cf17994 commit 87eb710
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions block/genhd.c
Original file line number Diff line number Diff line change
Expand Up @@ -1092,8 +1092,17 @@ static void disk_release(struct device *dev)
blk_put_queue(disk->queue);
iput(disk->part0->bd_inode); /* frees the disk */
}

static int block_uevent(struct device *dev, struct kobj_uevent_env *env)
{
struct gendisk *disk = dev_to_disk(dev);

return add_uevent_var(env, "DISKSEQ=%llu", disk->diskseq);
}

struct class block_class = {
.name = "block",
.dev_uevent = block_uevent,
};

static char *block_devnode(struct device *dev, umode_t *mode,
Expand Down

0 comments on commit 87eb710

Please sign in to comment.