mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-18 07:35:12 +08:00
bio: use memset() in bio_init()
Use memset() to clear the bio, instead of doing each field manually. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
4fa253f33c
commit
2b94de552e
14
fs/bio.c
14
fs/bio.c
@ -127,21 +127,9 @@ static void bio_fs_destructor(struct bio *bio)
|
||||
|
||||
void bio_init(struct bio *bio)
|
||||
{
|
||||
bio->bi_next = NULL;
|
||||
bio->bi_bdev = NULL;
|
||||
memset(bio, 0, sizeof(*bio));
|
||||
bio->bi_flags = 1 << BIO_UPTODATE;
|
||||
bio->bi_rw = 0;
|
||||
bio->bi_vcnt = 0;
|
||||
bio->bi_idx = 0;
|
||||
bio->bi_phys_segments = 0;
|
||||
bio->bi_hw_segments = 0;
|
||||
bio->bi_hw_front_size = 0;
|
||||
bio->bi_hw_back_size = 0;
|
||||
bio->bi_size = 0;
|
||||
bio->bi_max_vecs = 0;
|
||||
bio->bi_end_io = NULL;
|
||||
atomic_set(&bio->bi_cnt, 1);
|
||||
bio->bi_private = NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user