IB/mthca: Fix thinko in mthca_table_find()
break only escapes from the innermost loop, and we want to escape both loops and return an answer. Noticed by Ishai Rabinovitch. Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
Родитель
44b5b03033
Коммит
6c7d2a75b5
|
@ -233,7 +233,7 @@ void *mthca_table_find(struct mthca_icm_table *table, int obj)
|
||||||
for (i = 0; i < chunk->npages; ++i) {
|
for (i = 0; i < chunk->npages; ++i) {
|
||||||
if (chunk->mem[i].length >= offset) {
|
if (chunk->mem[i].length >= offset) {
|
||||||
page = chunk->mem[i].page;
|
page = chunk->mem[i].page;
|
||||||
break;
|
goto out;
|
||||||
}
|
}
|
||||||
offset -= chunk->mem[i].length;
|
offset -= chunk->mem[i].length;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче