diff options
author | Jeffle Xu <jefflexu@linux.alibaba.com> | 2020-11-25 14:58:17 +0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-11-25 11:11:32 -0700 |
commit | 63653368c25ff0b1b1aaf045c97ea87bd8c16123 (patch) | |
tree | 8f6ec4fdeccd9f326221900e41ed2b225fd87f36 /include | |
parent | 5a5678ff3a495cbfccde9c734164cc8753a1ca97 (diff) |
block: remove unused BIO_SPLIT_ENTRIES
Since commit 4b1faf931650 ("block: Kill bio_pair_split()"), there's
no user of BIO_SPLIT_ENTRIES anymore.
Signed-off-by: Jeffle Xu <jefflexu@linux.alibaba.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/bio.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/bio.h b/include/linux/bio.h index c6d765382926..ecf67108f091 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h @@ -711,12 +711,6 @@ static inline bool bioset_initialized(struct bio_set *bs) return bs->bio_slab != NULL; } -/* - * a small number of entries is fine, not going to be performance critical. - * basically we just need to survive - */ -#define BIO_SPLIT_ENTRIES 2 - #if defined(CONFIG_BLK_DEV_INTEGRITY) #define bip_for_each_vec(bvl, bip, iter) \ |