dect
/
linux-2.6
Archived
13
0
Fork 0

ore: signedness bug in _sp2d_min_pg()

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

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
This commit is contained in:
Dan Carpenter 2012-10-02 11:28:45 +03:00 committed by Boaz Harrosh
parent b8017d2957
commit 74b217d0d3
1 changed files with 1 additions and 1 deletions

View File

@ -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];