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

Commit 74b217d0 authored by Dan Carpenter's avatar Dan Carpenter Committed by Boaz Harrosh
Browse files

ore: signedness bug in _sp2d_min_pg()



This for loop doesn't work correctly when "p" is unsigned.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
parent b8017d29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ static unsigned _sp2d_min_pg(struct __stripe_pages_2d *sp2d)

static unsigned _sp2d_max_pg(struct __stripe_pages_2d *sp2d)
{
	unsigned p;
	int p;

	for (p = sp2d->pages_in_unit - 1; p >= 0; --p) {
		struct __1_page_stripe *_1ps = &sp2d->_1p_stripes[p];