mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-02 02:34:05 +08:00
rbd: print capacity in decimal and features in hex
With exclusive-lock added and more to come, print features into dmesg. Change capacity to decimal while at it. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Reviewed-by: Mike Christie <mchristi@redhat.com>
This commit is contained in:
parent
ed95b21a4b
commit
ca7909e8bb
@ -6006,8 +6006,9 @@ static int rbd_dev_device_setup(struct rbd_device *rbd_dev)
|
||||
spin_unlock(&rbd_dev_list_lock);
|
||||
|
||||
add_disk(rbd_dev->disk);
|
||||
pr_info("%s: added with size 0x%llx\n", rbd_dev->disk->disk_name,
|
||||
(unsigned long long) rbd_dev->mapping.size);
|
||||
pr_info("%s: capacity %llu features 0x%llx\n", rbd_dev->disk->disk_name,
|
||||
(unsigned long long)get_capacity(rbd_dev->disk) << SECTOR_SHIFT,
|
||||
rbd_dev->header.features);
|
||||
|
||||
return ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user