mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Style.
Reviewed by: alc, markj Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
0a7c8d302a
commit
f141ed73a2
1 changed files with 3 additions and 3 deletions
|
|
@ -2712,9 +2712,9 @@ vm_map_wire(vm_map_t map, vm_offset_t start, vm_offset_t end,
|
|||
* If VM_MAP_WIRE_HOLESOK was specified, skip this check.
|
||||
*/
|
||||
next_entry:
|
||||
if (((flags & VM_MAP_WIRE_HOLESOK) == 0) &&
|
||||
(entry->end < end && (entry->next == &map->header ||
|
||||
entry->next->start > entry->end))) {
|
||||
if ((flags & VM_MAP_WIRE_HOLESOK) == 0 &&
|
||||
entry->end < end && (entry->next == &map->header ||
|
||||
entry->next->start > entry->end)) {
|
||||
end = entry->end;
|
||||
rv = KERN_INVALID_ADDRESS;
|
||||
goto done;
|
||||
|
|
|
|||
Loading…
Reference in a new issue