diff options
author | Shenghui Wang <shhuiw@foxmail.com> | 2019-03-16 16:24:37 +0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-03-22 11:01:02 -0600 |
commit | 1e4471e74c75acb3f89959ffa02a241227937ae2 (patch) | |
tree | f4d5c87e8c2bac069fda2c2dbbc449de3be5e293 /include | |
parent | 537d71b3f774c3e825540ab626bad6c0ed2b5ff7 (diff) | |
download | linux-1e4471e74c75acb3f89959ffa02a241227937ae2.tar.gz linux-1e4471e74c75acb3f89959ffa02a241227937ae2.tar.bz2 linux-1e4471e74c75acb3f89959ffa02a241227937ae2.zip |
sbitmap: trivial - update comment for sbitmap_deferred_clear_bit
"sbitmap_batch_clear" should be "sbitmap_deferred_clear"
Acked-by: Omar Sandoval <osandov@fb.com>
Signed-off-by: Shenghui Wang <shhuiw@foxmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sbitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sbitmap.h b/include/linux/sbitmap.h index 14d558146aea..20f3e3f029b9 100644 --- a/include/linux/sbitmap.h +++ b/include/linux/sbitmap.h @@ -330,7 +330,7 @@ static inline void sbitmap_clear_bit(struct sbitmap *sb, unsigned int bitnr) /* * This one is special, since it doesn't actually clear the bit, rather it * sets the corresponding bit in the ->cleared mask instead. Paired with - * the caller doing sbitmap_batch_clear() if a given index is full, which + * the caller doing sbitmap_deferred_clear() if a given index is full, which * will clear the previously freed entries in the corresponding ->word. */ static inline void sbitmap_deferred_clear_bit(struct sbitmap *sb, unsigned int bitnr) |