commit | 58b7aee114cf601defab93c164e8748750ecccf9 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Sep 01 16:26:25 2024 -0600 |
committer | Tom Rini <trini@konsulko.com> | Wed Sep 18 13:01:00 2024 -0600 |
tree | 90c218d7dc4be72a4d4146f0c1c14a0aef0c2193 | |
parent | 3c2f51e1ab886f076ead83665d8f261ffd72b1a1 [diff] |
sandbox: Unmap old tags So far unmapping has not been implemented. This means that if one test maps a pointer to an address with map_sysmem(), then a second test can use that same pointer, by mapping the address back to a pointer with map_to_sysmem(). This is not really desirable, even if it doesn't cause any problems at the moment. Implement unmapping, to clean this up. Signed-off-by: Simon Glass <sjg@chromium.org>