You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have to deal with Xen extended regions. The function z_mem_phys_addr and the macro Z_MEM_PHYS_ADDR aren't able to work with Xen extended regions. So, it can be used as for common cases.
I think that we need to add some code inside z_mem_phys_addr and Z_MEM_PHYS_ADDR, specifically changing the checks if we want to work with extended regions.
Note, in Linux, for example, Extended regions are implemented as hot-pluggable memory, so Linux mm subsystem can handle them correctly. So, probably we need to implement smth like this.
The text was updated successfully, but these errors were encountered:
We have to deal with Xen extended regions. The function
z_mem_phys_addr
and the macroZ_MEM_PHYS_ADDR
aren't able to work with Xen extended regions. So, it can be used as for common cases.I think that we need to add some code inside
z_mem_phys_addr
andZ_MEM_PHYS_ADDR
, specifically changing the checks if we want to work with extended regions.Note, in Linux, for example, Extended regions are implemented as hot-pluggable memory, so Linux mm subsystem can handle them correctly. So, probably we need to implement smth like this.
The text was updated successfully, but these errors were encountered: