Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI ONLY] Test #8878

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft

[CI ONLY] Test #8878

wants to merge 8 commits into from

Commits on Oct 3, 2024

  1. kpb: Increase number of memory pools

    The current design constraints of vmh allocator dictate that a buffer
    size must be a power of two and each group of buffers must have a size that
    is a multiple of the page size. The current configuration of memory regions
    provides 1MB of virtual space for buffers. The combination of these factors
    currently makes it impossible to allocate bigger buffer for the kbp. It is
    therefore necessary to increase the number of memory pools of which kbp
    use to allocade necessary buffer.
    
    Signed-off-by: Adrian Warecki <[email protected]>
    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    a1c7ae9 View commit details
    Browse the repository at this point in the history
  2. regions_mm: Invalidate cache when freeing memory

    Platforms based on xtensa have a non-coherent cache between cores. Before
    releasing a memory block, it is necessary to invalidate the cache. This
    memory block can be allocated by another core and performing cache
    writeback by the previous owner will destroy current content of the main
    memory.
    
    Signed-off-by: Adrian Warecki <[email protected]>
    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    f572433 View commit details
    Browse the repository at this point in the history
  3. ace: zephyr: alloc: Use virtual memory heap for buffers

    The buffer allocation method for ace platform has been changed. They are
    allocated using the virtual memory heap. This consists of a set of buffers
    with a predefined size.
    
    Signed-off-by: Adrian Warecki <[email protected]>
    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    a34366d View commit details
    Browse the repository at this point in the history
  4. debug

    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    6f4458f View commit details
    Browse the repository at this point in the history
  5. regions_mm: get_mapped_size

    Signed-off-by: Adrian Warecki <[email protected]>
    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    4ff8122 View commit details
    Browse the repository at this point in the history
  6. debug

    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    0b1c924 View commit details
    Browse the repository at this point in the history
  7. more heap

    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    28c622b View commit details
    Browse the repository at this point in the history
  8. multi core heap

    softwarecki committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    92bcbef View commit details
    Browse the repository at this point in the history