mirror of
https://github.com/seL4/seL4.git
synced 2026-04-09 16:59:55 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
57e5417ce2 | ||
|
|
d12bb374ab | ||
|
|
7d16e3dcae |
9
CHANGES
9
CHANGES
@@ -14,6 +14,15 @@ Upcoming release: BINARY COMPATIBLE
|
||||
|
||||
|
||||
## Upgrade Notes
|
||||
---
|
||||
10.1.1 2018-11-12: BINARY COMPATIBLE
|
||||
|
||||
## Changes
|
||||
* Remove theoretical uninitialised variable use in infer_cpu_gic_id for binary translation validation
|
||||
|
||||
## Upgrade Notes
|
||||
* 10.1.0 has a known broken test in the proofs. 10.1.1 fixes this test.
|
||||
|
||||
---
|
||||
10.1.0 2018-11-07: SOURCE COMPATIBLE
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ BOOT_CODE static uint8_t
|
||||
infer_cpu_gic_id(int nirqs)
|
||||
{
|
||||
word_t i;
|
||||
uint32_t target;
|
||||
uint32_t target = 0;
|
||||
for (i = 0; i < nirqs; i += 4) {
|
||||
target = gic_dist->targets[i >> 2];
|
||||
target |= target >> 16;
|
||||
|
||||
Reference in New Issue
Block a user