Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8deaf721 authored by Alberto Bertogli's avatar Alberto Bertogli Committed by Jens Axboe
Browse files

bio.h: Remove unused conditional code



The whole bio_integrity() definition is inside an #ifdef
CONFIG_BLK_DEV_INTEGRITY, there's no need for the conditional code.

Signed-off-by: default avatarAlberto Bertogli <albertito@blitiri.com.ar>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent d00e29fd
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -457,14 +457,7 @@ static inline int bio_has_data(struct bio *bio)
#define bip_for_each_vec(bvl, bip, i)					\
	__bip_for_each_vec(bvl, bip, i, (bip)->bip_idx)

static inline int bio_integrity(struct bio *bio)
{
#if defined(CONFIG_BLK_DEV_INTEGRITY)
	return bio->bi_integrity != NULL;
#else
	return 0;
#endif
}
#define bio_integrity(bio) (bio->bi_integrity != NULL)

extern struct bio_integrity_payload *bio_integrity_alloc_bioset(struct bio *, gfp_t, unsigned int, struct bio_set *);
extern struct bio_integrity_payload *bio_integrity_alloc(struct bio *, gfp_t, unsigned int);