CONFIG_BACKING_STORE_RAM_PAGES

Number of pages for RAM backing store

Type: int

Help

Number of pages of backing store memory to reserve in RAM. All test
cases for demand paging assume that there are at least 16 pages of
backing store storage available.

Direct dependencies

BACKING_STORE_RAM && DEMAND_PAGING

(Includes any dependencies from ifs and menus.)

Default

  • 16

Kconfig definition

At <Zephyr>/subsys/demand_paging/backing_store/Kconfig:24

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:42<Zephyr>/subsys/Kconfig:67<Zephyr>/subsys/demand_paging/Kconfig:9

Menu path: (Top) → Sub Systems and OS Services → Demand Paging modules

config BACKING_STORE_RAM_PAGES
    int "Number of pages for RAM backing store"
    default 16
    depends on BACKING_STORE_RAM && DEMAND_PAGING
    help
      Number of pages of backing store memory to reserve in RAM. All test
      cases for demand paging assume that there are at least 16 pages of
      backing store storage available.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)