On Tue, 30 Jun 2020 at 11:36, Alex Bennée <alex.ben...@linaro.org> wrote: > > Given we assert the requested address matches what we asked we should > also make that clear in the mmap flags. Otherwise we see failures in > the GitLab environment for some currently unknown but allowable > reason.
Adding MAP_FIXED will mean that instead of failing if there's something else already at that address, the kernel will now silently blow that away in favour of the new mapping. Is that definitely what we want here ? thanks -- PMM