blkdev_get (9) - Linux Manuals
blkdev_get: open a block device
NAME
blkdev_get - open a block device
SYNOPSIS
-
int blkdev_get(struct block_device
* bdev, fmode_tmode, void * holder);
ARGUMENTS
bdev
-
- block_device to open
mode
- FMODE_* mask
holder
- exclusive holder identifier
DESCRIPTION
Open bdev with mode. If mode includes FMODE_EXCL, bdev is open with exclusive access. Specifying FMODE_EXCL with NULLholder is invalid. Exclusive opens may nest for the same holder.
On success, the reference count of bdev is unchanged. On failure, bdev is put.
CONTEXT
RETURN
0 on success, -errno on failure.
COPYRIGHT