nullb: add interface to power on disk
authorShaohua Li <shli@fb.com>
Mon, 14 Aug 2017 22:04:54 +0000 (15:04 -0700)
committerJens Axboe <axboe@kernel.dk>
Wed, 23 Aug 2017 14:54:03 +0000 (08:54 -0600)
commitcedcafad8277b3a07e90bf2f68fff5c6b28a183e
tree6bbd8a28bd9513188b29f1dec567841726053bc6
parent3bf2bd20734e3e6ffda53719a9c10fb3ee9c5ffa
nullb: add interface to power on disk

The device created in nullb configfs interface isn't power on by
default. After user configures the device, user can do 'echo 1 >
xxx/nullb/device_name/power' to power on the device, which will create a
disk. the xxx/nullb/device_name/index is the disk index, so if the index
is 2, the new created disk should be named as /dev/nullb2. Note, the
'index' is only valid after disk is power on.

'echo 0 > xxx/nullb/device_name/power' will remove the disk. Note, this
doesn't remove the device. To remove the device, user should do 'rmdir
xxx/nullb/device_name'. Removing the device will remove the disk too.

Signed-off-by: Shaohua Li <shli@fb.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/null_blk.c