SlideShare a Scribd company logo
MEMORY MANAGEMENT




      9/3/2012      1
Agenda
 Introduction to Solaris
 History of solaris
 Solaris memory architecture.
 Backing store
 VM system.
 Solaris memory management.
 Swapping
 Demand paging.




                       9/3/2012   2
Introduction to solaris
 Solaris is a Unix operating system originally
  developed by Sun Microsystems.
 Solaris is known for its scalability especially on
  SPARC systems and for originating many
  innovative features such as DTrace, ZFS and Time
  Slider.
 Solaris supports SPARC-based and x-86 based
  workstation and servers from Sun and other
  vendors.
 Solaris has a reputation for being well-suited to
  symmetric multiprocessing, supporting a large
  number of CPUs.
 Programmed in C.
                            9/3/2012                   3
 Its source model is Mixed open source/closed
History of solaris
 In earlier days SunOS is implemented in
  uniprocessor workstation.
 In 1980’s distributed and network-based computing
  became popular, so they went to multiprocessor
  system to speedup.
 In 1987, AT&T bell and Sun joined together for a
  project and developed a new OS by merging the
  existing OS.(SunOS,BSD,SVR3,Xenix).
 That new OS is named as System V Release 4
  (SVR4) and then its name changed as Solaris 2.
 Latest version is Solaris 11.



                        9/3/2012                      4
Solaris Memory Architecture

   Physical memory is divided into fixed-sized pieces
    called pages.
   The size of the page varies from platform to
    platform.
   The common size is 8 Kbytes.
   Each page is associated with a file and offset.
   The file and offset identify the backing store for the
    page.




                            9/3/2012                         5
Backing store
   Backing store is the location to which the physical
    page contents will be migrated when that page is
    need to be taken for another process.

   The pages are migrated to slower medium like disk
    and that is called swap space.

   The location where the pages are migrated is
    called page-out.

   When again that pages are needed by the process,
    the location from which the pages are read back
    again is called page-in.
                           9/3/2012                       6
Virtual memory System
   Virtual memory system is the core for a Solaris
    system.


Why have a Virtual memory System?

 It presents simple memory programming model.
 It allows process to see linear range of bytes,
  regardless of fragmentation of the real memory.
 It gives programming model with a larger size than
  available physical storage.


                            9/3/2012                   7
Jobs of VM System
   The job of VM system is to keep the most
    frequently referenced portions of memory in
    primary storage.

   When RAM shortage comes, VM is required to free
    the RAM by transfering infrequently used memory
    out to the backing store.

   By doing so,the VM system optimizes the
    performance.

   VM system supports multiple users and sharing of
    pages and thus provide protection.
                           9/3/2012                    8
Process Memory Allocation
   A process will have a linear virtual address space.

   The linear Virtual address space of a process is
    divided into segments like

 Executable-text : Executable instructions in
  binary form
 Executable-Data : Initialized variables in the
  executable
 Heap space      : Memory allocated by malloc()
 Process Stack and so on……



                           9/3/2012                       9
Process memory allocation




           9/3/2012         10
Solaris virtual to physical memory
            management




                9/3/2012             11
Virtual memory management unit(MMU)

   Solaris kernel breaks the process into segments
    and segments into pages.

   The hardware MMU maps those pages into
    physical memory by using a platform-specific set of
    translation tables.

   Each entry in the table has the physical address of
    the page of the RAM,so that memory access can
    be converted on-the-fly in hardware.




                           9/3/2012                       12
Shared Mapped File




        9/3/2012     13
Solaris Memory Management
    Two basic types of memory management manage
     the allocation and migration of physical pages of
     memory to and from swap space :



               1.Swapping
               2.Demand paging



   The VM system uses a global paging model that
    implements a single global policy to manage the
    allocation of memory between the processes.
                          9/3/2012                    14
Swapping
   The swapping algorithm uses user process as the
    granularity for managing memory.

   If there is a shortage of memory, then all the pages
    of the least active process will be swapped out to
    the swap device, freeing memory for other
    processes.

   Then the corresponding flag in the process table is
    set to indicate that this process has been swapped
    out.



                           9/3/2012                        15
Memory Scheduler
   The memory scheduler is launched at boot time
    and does nothing.

   If the memory is consistently less, it starts looking
    for processes that it can completely swap out.

   If shortage is minimal, then soft swap takes place.

   Otherwise hard-swap.



                             9/3/2012                       16
Soft Swapping

   If the process have been inactive for atleast
    maxslp(default 20 seconds) seconds, then memory
    sceduler swaps out all the pages for that process.




                           9/3/2012                      17
Hard Swapping
   Hard swapping takes place when all of the
    following are true :

 Atleast two processes are on the run queue,
  waiting for CPU.
 The average free memory over 30 seconds is
  consistently less than minimum.
 Excessive paging (page-out + page-in is high).




                          9/3/2012                 18
Pros and Cons of Swapping
   Pros:
      1.This is the inexpensive way to conserve
    memory.
      2. Easy implementation.

   Cons:
      1. It dramatically affects a process’s
    performance.



    So the swapping is used only as a last resort when
           the system is desperate for memory.
                            9/3/2012                     19
Demand paging
   The Demand paging model uses a page as the
    granularity for memory management.

   Pages of memory are allocated on demand.

   When memory is first referenced, a page fault
    occurs and memory is allocated one page at a
    time.

   The page scanner and the virtual memory page
    fault mechanism are the core of the demand paged
    memory management.
                           9/3/2012                    20
Page Scanner
   The page scanner is a kernel thread, which is
    awakened when the amount of memory on the
    free-page list falls below a system threshhold,
    typically 1/64 th of total physical memory.

   Scanner (pageout_scanner) tracks pages by
    reading the state of the hardware bits in MMU
      – MMU bits maintain state of referenced and
    written
         (dirty).
      – Uses a twohanded clock algorithm to
    determine
         eviction.
                           9/3/2012                   21
Two Handed Clock Algorithm




 Both hands rotate clock-wise.
 The front hand clears the referenced and modified
  bit of each page.
 The trailing back hand then inspects the referenced
  and modified bits some time later.

                         9/3/2012                   22
Scan Rate
 The scan rate changes during the course of the
  page scanners operation
   Scanners scans at slowscan when memory is
  below lotsfree and then increases to fastscan
  when memory has fallen below minfree
  threshold

    Slowscan is set to 100 pages by default.

     Fastscan is set to physicalmemory/2 capped
    at 8192 pages

                        9/3/2012                   23
Page Faults
When do Page Faults occur?
   MMU-generated exceptions (trap) tell the operating
    system when a memory access cannot continue
    without the kernel’s intervention.

 Three major types of memory-related hardware
  exceptions can occur:
 Major page faults
 Minor page faults
 Protection faults




                          9/3/2012                   24
Advantages of Demand
              paging
   Loading pages of memory on demand dramatically
    lowers the memory footprint
     Memory footprint refers to the amount of main memory
      that a program uses or references while running.
   And startup time of the process.




                             9/3/2012                        25
Memory sharing

Multiple users’ processes can share memory

 Multiple processes can sharing program binaries
  and application data.
 The Solaris kernel introduced dynamically linked
  libraries.




                        9/3/2012                     26
Memory protection
 A user’s process must not be able access the
  memory of another process.
 A program fault in one program could cause
  another program (or the entire operating system) to
  fail.
 The protection is implemented by using protection
  modes read, write, execute and boundary
  checking.




                        9/3/2012                    27
Kernel Virtual Memory Layout

 The kernel uses virtual memory and MMU like the
  process.
 The kernel uses top 256 Mbytes or 512 Mbytes in
  common virtual address space.
 Most of the kernel memory are not pageable.
 This characteristics avoids the deadlocks.
 The kernel cannot rely on the global paging.




                        9/3/2012                    28
Kernel Memory Allocation
   Kernel memory is allocated at different levels.

    Page allocator
          It allocates unmapped pages from the free list
    to the kernel address space.
          Solaris uses Resource map allocator to
    allocate the free memory to the kernel.
           Resource map allocator uses first-fit
    algorithm.




                           9/3/2012                    29
Kernel Memory Slab Allocator
   Solaris provides a general-purpose memory
    allocator that provides arbitrarily sized memory
    allocations.

We use the slab allocator for memory requests that
 are:
 Smaller than a page size
 Not an even multiple of a page size
 Frequently going to be allocated and freed, so
 would otherwise fragment the kernel map



                           9/3/2012                    30
Why Slab Allocator?
   The reasons for introducing the slab allocator were
    as follows:

  The SVR4 allocator was slow to satisfy allocation
  requests.
 Significant fragmentation problems arose with use
  of the SVR4 allocator.
 The allocator footprint was large, wasting a lot of
  memory.
 With no clean interfaces for memory allocation,
  code was duplicated in many places.


                           9/3/2012                       31
9/3/2012   32
 The slab allocator uses the term object to describe
  a single memory allocation unit.
 Cache to refer to a pool of like objects.
 Slab to refer to a group of objects that reside within
  the cache.
 Slab allocator solves many of the fragmentation
  issues by grouping different sized memory objects.
 Many cache will be activate at once in the solaris
  kernel.



                          9/3/2012                     33
References
Book:
     SOLARIS Internals,Core Kernel
    Architecture,Sun Microsystems.
Website:
   www.sun.com




                         9/3/2012     34
THANK YOU….



     9/3/2012   35

More Related Content

PPTX
Os unit 3
PPTX
Memory virtualization
PPTX
Input Output Management in Operating System
PPTX
Virtual Memory
PPTX
Virtual Memory
PPTX
Elements of cache design
PPT
Virtual memory
PPTX
Windows memory management
Os unit 3
Memory virtualization
Input Output Management in Operating System
Virtual Memory
Virtual Memory
Elements of cache design
Virtual memory
Windows memory management

What's hot (20)

PPT
Chapter 8 - Main Memory
PDF
Memory management
PDF
Linux Memory Management
PPTX
External Memory
PDF
Operating Systems - memory management
PDF
computer system structure
PPT
Chapter 10 - File System Interface
PPT
Chapter 9 - Virtual Memory
PPT
Chapter 12 - Mass Storage Systems
PPTX
Operating system paging and segmentation
PPT
Memory Management in OS
PPTX
Chapter 10 Operating Systems silberschatz
PPTX
4. Memory virtualization and management
PPTX
distributed Computing system model
PPT
Virtual memory
PPT
Cache coherence
PDF
Os structure
PPTX
Page replacement algorithms
PPTX
Virtual memory managment
Chapter 8 - Main Memory
Memory management
Linux Memory Management
External Memory
Operating Systems - memory management
computer system structure
Chapter 10 - File System Interface
Chapter 9 - Virtual Memory
Chapter 12 - Mass Storage Systems
Operating system paging and segmentation
Memory Management in OS
Chapter 10 Operating Systems silberschatz
4. Memory virtualization and management
distributed Computing system model
Virtual memory
Cache coherence
Os structure
Page replacement algorithms
Virtual memory managment
Ad

Viewers also liked (20)

PPT
Unix memory management
PPTX
Solaris Operating System
PDF
8 memory management strategies
ODP
Memory management in Linux
PDF
Solaris 9 Installation Guide
PPTX
Operating Systems - File Management
PDF
Solaris, OpenSolaris y Virtualización
PPTX
Solaris Operating System - Oracle
PDF
Solaris basics
PPTX
Operating System-Memory Management
PPT
Os Swapping, Paging, Segmentation and Virtual Memory
PPTX
Paging and Segmentation in Operating System
PDF
SOLAR PROJECT MANAGEMENT
PDF
Solar management unit with data logger
PPT
Open Solaris 2008.05
PDF
Ecmascript 6 (ES6) جافا سكربت (6)
PDF
Ch4 memory management
PPTX
Advantages and disadvantages solaris
PDF
memory management of windows vs linux
PPTX
Linux Kernel Booting Process (2) - For NLKB
Unix memory management
Solaris Operating System
8 memory management strategies
Memory management in Linux
Solaris 9 Installation Guide
Operating Systems - File Management
Solaris, OpenSolaris y Virtualización
Solaris Operating System - Oracle
Solaris basics
Operating System-Memory Management
Os Swapping, Paging, Segmentation and Virtual Memory
Paging and Segmentation in Operating System
SOLAR PROJECT MANAGEMENT
Solar management unit with data logger
Open Solaris 2008.05
Ecmascript 6 (ES6) جافا سكربت (6)
Ch4 memory management
Advantages and disadvantages solaris
memory management of windows vs linux
Linux Kernel Booting Process (2) - For NLKB
Ad

Similar to Os solaris memory management (20)

PPT
Memory Management-Muhammad Ahmad.ppt
PPT
Chapter 04
PPT
Computer memory management
PPT
PPT
Memory Management
PPTX
Computer architecture virtual memory
PPT
Virtual memory Chapter 9 simple and easy
PDF
CH09.pdf
PPT
08 operating system support
PPT
virtual memory
PPT
chap.4.memory.manag.ppt
PPT
4 (1)
PPT
PPT
08 virtual memory
PPT
Mca ii os u-4 memory management
PPTX
Virtual Memory Managementddddddddffffffffffffff.pptx
DOCX
Module4
PPT
Chapter 8 - Virtual memory - William stallings.ppt
PPT
operating system
PPT
Unit 5 Memory management System in OS.ppt
Memory Management-Muhammad Ahmad.ppt
Chapter 04
Computer memory management
Memory Management
Computer architecture virtual memory
Virtual memory Chapter 9 simple and easy
CH09.pdf
08 operating system support
virtual memory
chap.4.memory.manag.ppt
4 (1)
08 virtual memory
Mca ii os u-4 memory management
Virtual Memory Managementddddddddffffffffffffff.pptx
Module4
Chapter 8 - Virtual memory - William stallings.ppt
operating system
Unit 5 Memory management System in OS.ppt

More from Tech_MX (20)

PPTX
Virtual base class
PPTX
Uid
PPTX
Theory of estimation
PPTX
Templates in C++
PPT
String & its application
PPTX
Statistical quality__control_2
PPTX
Stack data structure
PPT
Stack Data Structure & It's Application
PPTX
Spss
PPTX
Spanning trees & applications
PPTX
Set data structure 2
PPTX
Set data structure
PPTX
Real time Operating System
PPTX
Parsing
PPTX
Mouse interrupts (Assembly Language & C)
PPT
Motherboard of a pc
PPTX
More on Lex
PPTX
MultiMedia dbms
PPTX
Merging files (Data Structure)
PPTX
Memory dbms
Virtual base class
Uid
Theory of estimation
Templates in C++
String & its application
Statistical quality__control_2
Stack data structure
Stack Data Structure & It's Application
Spss
Spanning trees & applications
Set data structure 2
Set data structure
Real time Operating System
Parsing
Mouse interrupts (Assembly Language & C)
Motherboard of a pc
More on Lex
MultiMedia dbms
Merging files (Data Structure)
Memory dbms

Recently uploaded (20)

PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Modernizing your data center with Dell and AMD
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Machine learning based COVID-19 study performance prediction
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
Empathic Computing: Creating Shared Understanding
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Modernizing your data center with Dell and AMD
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
NewMind AI Weekly Chronicles - August'25 Week I
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Agricultural_Statistics_at_a_Glance_2022_0.pdf
A Presentation on Artificial Intelligence
Per capita expenditure prediction using model stacking based on satellite ima...
Building Integrated photovoltaic BIPV_UPV.pdf
Reach Out and Touch Someone: Haptics and Empathic Computing
Understanding_Digital_Forensics_Presentation.pptx
Machine learning based COVID-19 study performance prediction
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
Empathic Computing: Creating Shared Understanding
20250228 LYD VKU AI Blended-Learning.pptx
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf

Os solaris memory management

  • 1. MEMORY MANAGEMENT 9/3/2012 1
  • 2. Agenda  Introduction to Solaris  History of solaris  Solaris memory architecture.  Backing store  VM system.  Solaris memory management.  Swapping  Demand paging. 9/3/2012 2
  • 3. Introduction to solaris  Solaris is a Unix operating system originally developed by Sun Microsystems.  Solaris is known for its scalability especially on SPARC systems and for originating many innovative features such as DTrace, ZFS and Time Slider.  Solaris supports SPARC-based and x-86 based workstation and servers from Sun and other vendors.  Solaris has a reputation for being well-suited to symmetric multiprocessing, supporting a large number of CPUs.  Programmed in C. 9/3/2012 3  Its source model is Mixed open source/closed
  • 4. History of solaris  In earlier days SunOS is implemented in uniprocessor workstation.  In 1980’s distributed and network-based computing became popular, so they went to multiprocessor system to speedup.  In 1987, AT&T bell and Sun joined together for a project and developed a new OS by merging the existing OS.(SunOS,BSD,SVR3,Xenix).  That new OS is named as System V Release 4 (SVR4) and then its name changed as Solaris 2.  Latest version is Solaris 11. 9/3/2012 4
  • 5. Solaris Memory Architecture  Physical memory is divided into fixed-sized pieces called pages.  The size of the page varies from platform to platform.  The common size is 8 Kbytes.  Each page is associated with a file and offset.  The file and offset identify the backing store for the page. 9/3/2012 5
  • 6. Backing store  Backing store is the location to which the physical page contents will be migrated when that page is need to be taken for another process.  The pages are migrated to slower medium like disk and that is called swap space.  The location where the pages are migrated is called page-out.  When again that pages are needed by the process, the location from which the pages are read back again is called page-in. 9/3/2012 6
  • 7. Virtual memory System  Virtual memory system is the core for a Solaris system. Why have a Virtual memory System?  It presents simple memory programming model.  It allows process to see linear range of bytes, regardless of fragmentation of the real memory.  It gives programming model with a larger size than available physical storage. 9/3/2012 7
  • 8. Jobs of VM System  The job of VM system is to keep the most frequently referenced portions of memory in primary storage.  When RAM shortage comes, VM is required to free the RAM by transfering infrequently used memory out to the backing store.  By doing so,the VM system optimizes the performance.  VM system supports multiple users and sharing of pages and thus provide protection. 9/3/2012 8
  • 9. Process Memory Allocation  A process will have a linear virtual address space.  The linear Virtual address space of a process is divided into segments like  Executable-text : Executable instructions in binary form  Executable-Data : Initialized variables in the executable  Heap space : Memory allocated by malloc()  Process Stack and so on…… 9/3/2012 9
  • 11. Solaris virtual to physical memory management 9/3/2012 11
  • 12. Virtual memory management unit(MMU)  Solaris kernel breaks the process into segments and segments into pages.  The hardware MMU maps those pages into physical memory by using a platform-specific set of translation tables.  Each entry in the table has the physical address of the page of the RAM,so that memory access can be converted on-the-fly in hardware. 9/3/2012 12
  • 13. Shared Mapped File 9/3/2012 13
  • 14. Solaris Memory Management  Two basic types of memory management manage the allocation and migration of physical pages of memory to and from swap space : 1.Swapping 2.Demand paging  The VM system uses a global paging model that implements a single global policy to manage the allocation of memory between the processes. 9/3/2012 14
  • 15. Swapping  The swapping algorithm uses user process as the granularity for managing memory.  If there is a shortage of memory, then all the pages of the least active process will be swapped out to the swap device, freeing memory for other processes.  Then the corresponding flag in the process table is set to indicate that this process has been swapped out. 9/3/2012 15
  • 16. Memory Scheduler  The memory scheduler is launched at boot time and does nothing.  If the memory is consistently less, it starts looking for processes that it can completely swap out.  If shortage is minimal, then soft swap takes place.  Otherwise hard-swap. 9/3/2012 16
  • 17. Soft Swapping  If the process have been inactive for atleast maxslp(default 20 seconds) seconds, then memory sceduler swaps out all the pages for that process. 9/3/2012 17
  • 18. Hard Swapping  Hard swapping takes place when all of the following are true :  Atleast two processes are on the run queue, waiting for CPU.  The average free memory over 30 seconds is consistently less than minimum.  Excessive paging (page-out + page-in is high). 9/3/2012 18
  • 19. Pros and Cons of Swapping  Pros: 1.This is the inexpensive way to conserve memory. 2. Easy implementation.  Cons: 1. It dramatically affects a process’s performance. So the swapping is used only as a last resort when the system is desperate for memory. 9/3/2012 19
  • 20. Demand paging  The Demand paging model uses a page as the granularity for memory management.  Pages of memory are allocated on demand.  When memory is first referenced, a page fault occurs and memory is allocated one page at a time.  The page scanner and the virtual memory page fault mechanism are the core of the demand paged memory management. 9/3/2012 20
  • 21. Page Scanner  The page scanner is a kernel thread, which is awakened when the amount of memory on the free-page list falls below a system threshhold, typically 1/64 th of total physical memory.  Scanner (pageout_scanner) tracks pages by reading the state of the hardware bits in MMU – MMU bits maintain state of referenced and written (dirty). – Uses a twohanded clock algorithm to determine eviction. 9/3/2012 21
  • 22. Two Handed Clock Algorithm  Both hands rotate clock-wise.  The front hand clears the referenced and modified bit of each page.  The trailing back hand then inspects the referenced and modified bits some time later. 9/3/2012 22
  • 23. Scan Rate  The scan rate changes during the course of the page scanners operation  Scanners scans at slowscan when memory is below lotsfree and then increases to fastscan when memory has fallen below minfree threshold  Slowscan is set to 100 pages by default.  Fastscan is set to physicalmemory/2 capped at 8192 pages 9/3/2012 23
  • 24. Page Faults When do Page Faults occur?  MMU-generated exceptions (trap) tell the operating system when a memory access cannot continue without the kernel’s intervention.  Three major types of memory-related hardware exceptions can occur:  Major page faults  Minor page faults  Protection faults 9/3/2012 24
  • 25. Advantages of Demand paging  Loading pages of memory on demand dramatically lowers the memory footprint  Memory footprint refers to the amount of main memory that a program uses or references while running.  And startup time of the process. 9/3/2012 25
  • 26. Memory sharing Multiple users’ processes can share memory  Multiple processes can sharing program binaries and application data.  The Solaris kernel introduced dynamically linked libraries. 9/3/2012 26
  • 27. Memory protection  A user’s process must not be able access the memory of another process.  A program fault in one program could cause another program (or the entire operating system) to fail.  The protection is implemented by using protection modes read, write, execute and boundary checking. 9/3/2012 27
  • 28. Kernel Virtual Memory Layout  The kernel uses virtual memory and MMU like the process.  The kernel uses top 256 Mbytes or 512 Mbytes in common virtual address space.  Most of the kernel memory are not pageable.  This characteristics avoids the deadlocks.  The kernel cannot rely on the global paging. 9/3/2012 28
  • 29. Kernel Memory Allocation  Kernel memory is allocated at different levels.  Page allocator It allocates unmapped pages from the free list to the kernel address space. Solaris uses Resource map allocator to allocate the free memory to the kernel. Resource map allocator uses first-fit algorithm. 9/3/2012 29
  • 30. Kernel Memory Slab Allocator  Solaris provides a general-purpose memory allocator that provides arbitrarily sized memory allocations. We use the slab allocator for memory requests that are:  Smaller than a page size  Not an even multiple of a page size  Frequently going to be allocated and freed, so would otherwise fragment the kernel map 9/3/2012 30
  • 31. Why Slab Allocator?  The reasons for introducing the slab allocator were as follows:  The SVR4 allocator was slow to satisfy allocation requests.  Significant fragmentation problems arose with use of the SVR4 allocator.  The allocator footprint was large, wasting a lot of memory.  With no clean interfaces for memory allocation, code was duplicated in many places. 9/3/2012 31
  • 32. 9/3/2012 32
  • 33.  The slab allocator uses the term object to describe a single memory allocation unit.  Cache to refer to a pool of like objects.  Slab to refer to a group of objects that reside within the cache.  Slab allocator solves many of the fragmentation issues by grouping different sized memory objects.  Many cache will be activate at once in the solaris kernel. 9/3/2012 33
  • 34. References Book:  SOLARIS Internals,Core Kernel Architecture,Sun Microsystems. Website: www.sun.com 9/3/2012 34
  • 35. THANK YOU…. 9/3/2012 35