mirror of https://github.com/ipxe/ipxe.git
[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>pull/58/merge
parent
0ced99e97c
commit
dea5b74475
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue