diff options
author | Eric Biggers <ebiggers@google.com> | 2017-01-23 11:41:39 -0800 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-03-24 15:41:28 -0600 |
commit | e554911c2367f0896c1276cdca95610ec3392fce (patch) | |
tree | 41815c02c32f1f0418de9e8ff4050547dc7f017a /block | |
parent | 0a3ef9db64df90854d772e8343a14e044dc004bc (diff) | |
download | linux-e554911c2367f0896c1276cdca95610ec3392fce.tar.bz2 |
block: correct documentation for blkdev_issue_discard() flags
BLKDEV_IFL_* flags no longer exist; blkdev_issue_discard() now actually
takes BLKDEV_DISCARD_* flags.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-lib.c b/block/blk-lib.c index ed1e78e24db0..e5b853f2b8a2 100644 --- a/block/blk-lib.c +++ b/block/blk-lib.c @@ -109,7 +109,7 @@ EXPORT_SYMBOL(__blkdev_issue_discard); * @sector: start sector * @nr_sects: number of sectors to discard * @gfp_mask: memory allocation flags (for bio_alloc) - * @flags: BLKDEV_IFL_* flags to control behaviour + * @flags: BLKDEV_DISCARD_* flags to control behaviour * * Description: * Issue a discard request for the sectors in question. |