Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches

Backing store APIs. More...

Functions

int k_mem_paging_backing_store_location_get (struct z_page_frame *pf, uintptr_t *location, bool page_fault)
 Reserve or fetch a storage location for a data page loaded into a page frame.
 
void k_mem_paging_backing_store_location_free (uintptr_t location)
 Free a backing store location.
 
void k_mem_paging_backing_store_page_out (uintptr_t location)
 Copy a data page from Z_SCRATCH_PAGE to the specified location.
 
void k_mem_paging_backing_store_page_in (uintptr_t location)
 Copy a data page from the provided location to Z_SCRATCH_PAGE.
 
void k_mem_paging_backing_store_page_finalize (struct z_page_frame *pf, uintptr_t location)
 Update internal accounting after a page-in.
 
void k_mem_paging_backing_store_init (void)
 Backing store initialization function.
 

Detailed Description

Backing store APIs.

Function Documentation

◆ k_mem_paging_backing_store_init()

void k_mem_paging_backing_store_init ( void  )

#include <zephyr/kernel/mm/demand_paging.h>

Backing store initialization function.

The implementation may expect to receive page in/out calls as soon as this returns, but not before that. Called at POST_KERNEL.

This function is expected to do two things:

  • Initialize any internal data structures and accounting for the backing store.
  • If the backing store already contains all or some loaded kernel data pages at boot time, Z_PAGE_FRAME_BACKED should be appropriately set for their associated page frames, and any internal accounting set up appropriately.

◆ k_mem_paging_backing_store_location_free()

void k_mem_paging_backing_store_location_free ( uintptr_t  location)

#include <zephyr/kernel/mm/demand_paging.h>

Free a backing store location.

Any stored data may be discarded, and the location token associated with this address may be re-used for some other data page.

This function is invoked with interrupts locked.

Parameters
locationLocation token to free

◆ k_mem_paging_backing_store_location_get()

int k_mem_paging_backing_store_location_get ( struct z_page_frame *  pf,
uintptr_t location,
bool  page_fault 
)

#include <zephyr/kernel/mm/demand_paging.h>

Reserve or fetch a storage location for a data page loaded into a page frame.

The returned location token must be unique to the mapped virtual address. This location will be used in the backing store to page out data page contents for later retrieval. The location value must be page-aligned.

This function may be called multiple times on the same data page. If its page frame has its Z_PAGE_FRAME_BACKED bit set, it is expected to return the previous backing store location for the data page containing a cached clean copy. This clean copy may be updated on page-out, or used to discard clean pages without needing to write out their contents.

If the backing store is full, some other backing store location which caches a loaded data page may be selected, in which case its associated page frame will have the Z_PAGE_FRAME_BACKED bit cleared (as it is no longer cached).

pf->addr will indicate the virtual address the page is currently mapped to. Large, sparse backing stores which can contain the entire address space may simply generate location tokens purely as a function of pf->addr with no other management necessary.

This function distinguishes whether it was called on behalf of a page fault. A free backing store location must always be reserved in order for page faults to succeed. If the page_fault parameter is not set, this function should return -ENOMEM even if one location is available.

This function is invoked with interrupts locked.

Parameters
pfVirtual address to obtain a storage location
[out]locationstorage location token
page_faultWhether this request was for a page fault
Returns
0 Success
-ENOMEM Backing store is full

◆ k_mem_paging_backing_store_page_finalize()

void k_mem_paging_backing_store_page_finalize ( struct z_page_frame *  pf,
uintptr_t  location 
)

#include <zephyr/kernel/mm/demand_paging.h>

Update internal accounting after a page-in.

This is invoked after k_mem_paging_backing_store_page_in() and interrupts have been* re-locked, making it safe to access the z_page_frame data. The location value will be the same passed to k_mem_paging_backing_store_page_in().

The primary use-case for this is to update custom fields for the backing store in the page frame, to reflect where the data should be evicted to if it is paged out again. This may be a no-op in some implementations.

If the backing store caches paged-in data pages, this is the appropriate time to set the Z_PAGE_FRAME_BACKED bit. The kernel only skips paging out clean data pages if they are noted as clean in the page tables and the Z_PAGE_FRAME_BACKED bit is set in their associated page frame.

Parameters
pfPage frame that was loaded in
locationLocation of where the loaded data page was retrieved

◆ k_mem_paging_backing_store_page_in()

void k_mem_paging_backing_store_page_in ( uintptr_t  location)

#include <zephyr/kernel/mm/demand_paging.h>

Copy a data page from the provided location to Z_SCRATCH_PAGE.

Immediately before this is called, Z_SCRATCH_PAGE will be mapped read-write to the intended destination page frame for the calling context.

Calls to this and k_mem_paging_backing_store_page_out() will always be serialized, but interrupts may be enabled.

Parameters
locationLocation token for the data page

◆ k_mem_paging_backing_store_page_out()

void k_mem_paging_backing_store_page_out ( uintptr_t  location)

#include <zephyr/kernel/mm/demand_paging.h>

Copy a data page from Z_SCRATCH_PAGE to the specified location.

Immediately before this is called, Z_SCRATCH_PAGE will be mapped read-write to the intended source page frame for the calling context.

Calls to this and k_mem_paging_backing_store_page_in() will always be serialized, but interrupts may be enabled.

Parameters
locationLocation token for the data page, for later retrieval