david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[hermon] Assert that mapping length is non-zero

An (impossible) mapping length of zero produces a negative bit shift,
which is technically undefined.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2017-03-22 15:18:54 +02:00
parent 0ced99e97c
commit dea5b74475
1 changed files with 1 additions and 0 deletions

View File

@ -2113,6 +2113,7 @@ static int hermon_map_vpm ( struct hermon *hermon,
assert ( ( va & ( HERMON_PAGE_SIZE - 1 ) ) == 0 );
assert ( ( pa & ( HERMON_PAGE_SIZE - 1 ) ) == 0 );
assert ( ( len & ( HERMON_PAGE_SIZE - 1 ) ) == 0 );
assert ( len != 0 );
/* Calculate starting points */
start = pa;