mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
libceph: drop else branches in prepare_read_data{,_cont}
Just call set_in_bvec in the non-conditional part. Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
This commit is contained in:
parent
810313c5f3
commit
27884f4bce
1 changed files with 2 additions and 6 deletions
|
@ -1773,10 +1773,8 @@ static int prepare_read_data(struct ceph_connection *con)
|
|||
|
||||
bv.bv_page = con->bounce_page;
|
||||
bv.bv_offset = 0;
|
||||
set_in_bvec(con, &bv);
|
||||
} else {
|
||||
set_in_bvec(con, &bv);
|
||||
}
|
||||
set_in_bvec(con, &bv);
|
||||
con->v2.in_state = IN_S_PREPARE_READ_DATA_CONT;
|
||||
return 0;
|
||||
}
|
||||
|
@ -1807,10 +1805,8 @@ static void prepare_read_data_cont(struct ceph_connection *con)
|
|||
if (ceph_test_opt(from_msgr(con->msgr), RXBOUNCE)) {
|
||||
bv.bv_page = con->bounce_page;
|
||||
bv.bv_offset = 0;
|
||||
set_in_bvec(con, &bv);
|
||||
} else {
|
||||
set_in_bvec(con, &bv);
|
||||
}
|
||||
set_in_bvec(con, &bv);
|
||||
WARN_ON(con->v2.in_state != IN_S_PREPARE_READ_DATA_CONT);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue