Re: [PATCH v2 04/41] sandbox: Support unmapping a file

2021-11-24 Thread Simon Glass
Add the opposite of mapping, so that we can unmap and avoid running out of address space. Signed-off-by: Simon Glass --- (no changes since v1) arch/sandbox/cpu/os.c | 10 ++ include/os.h | 9 + 2 files changed, 19 insertions(+) Applied to u-boot-dm/next, thanks!

[PATCH v2 04/41] sandbox: Support unmapping a file

2021-10-23 Thread Simon Glass
Add the opposite of mapping, so that we can unmap and avoid running out of address space. Signed-off-by: Simon Glass --- (no changes since v1) arch/sandbox/cpu/os.c | 10 ++ include/os.h | 9 + 2 files changed, 19 insertions(+) diff --git a/arch/sandbox/cpu/os.c b/ar