SlideShare a Scribd company logo
1 of 45
Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
U3_Virtual Memory
8.2 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Virtual Memory
 Background
 Demand Paging
 Copy-on-Write
 Page Replacement
 Allocation of Frames
 Thrashing
 Memory-Mapped Files
 Allocating Kernel Memory
 Other Considerations
 Operating-System Examples
8.3 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Objectives
 To describe the benefits of a virtual memory
system
 To explain the concepts of demand paging,
page-replacement algorithms, and allocation of
page frames
 To discuss the principle of the working-set model
 To examine the relationship between shared
memory and memory-mapped files
 To explore how kernel memory is managed
8.4 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Background
 Code needs to be in memory to execute, but entire
program rarely used
 Error code, unusual routines, large data structures
 Entire program code not needed at same time
 Consider ability to execute partially-loaded program
 Program no longer constrained by limits of physical
memory
 Each program takes less memory while running ->
more programs run at the same time
Increased CPU utilization and throughput with no
increase in response time or turnaround time
 Less I/O needed to load or swap programs into
memory -> each user program runs faster
8.5 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
8.6 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Background (Cont.)
 Virtual memory –
 Only part of the program needs to be in memory
for execution
 Logical address space can therefore be much larger
than physical address space
 Allows address spaces to be shared by several
processes
 Allows for more efficient process creation
 More programs running concurrently
 Less I/O needed to load or swap processes
8.7 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Background (Cont.)
 Virtual memory:
 Physical memory organized in page frames
 MMU must map logical to physical
 Virtual memory can be implemented via:
 Demand paging
 Demand segmentation
8.8 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Demand Paging
 Bring a page into memory only when it is needed
 Less I/O needed, no unnecessary I/O
 Less memory needed
 Faster response
 More users
 Page is needed
 invalid reference  abort
 not-in-memory  bring to memory and reference it
 Already-in-memory  reference it
 Lazy swapper – never swaps a page into memory unless page
will be needed
 Swapper that deals with pages is a pager
8.9 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Valid-Invalid Bit
 With each page table entry a valid–invalid bit is associated
(v  in-memory – memory resident, i  not-in-memory)
 Initially valid–invalid bit is set to i on all entries
 Example of a page table snapshot:
During MMU address translation, if valid–invalid bit in page table
entry is i  page fault
8.10 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Demand paging: Page Table When Some Pages Are Not in
Main Memory
8.11 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Page Fault
 If there is a reference to a page, first reference to that
page will trap to operating system:
page fault
1. Operating system looks at page table to decide:
 Invalid reference  abort
 Not in memory: means page fault
2. Find free frame
3. Swap page into frame via scheduled disk operation
4. Reset tables to indicate page now in memory
Set validation bit = v
5. Restart the instruction that caused the page fault
8.12 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Steps in Handling a Page Fault
8.13 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Steps in Handling a Page Fault
8.14 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Performance of Demand Paging
 Stages in Demand Paging (worse case)
1. Trap to the operating system
2. Save the user registers and process state
3. Determine that the interrupt was a page fault
4. Check that the page reference was legal and determine the location of the page on the
disk
5. Issue a read from the disk to a free frame:
1. Wait in a queue for this device until the read request is serviced
2. Wait for the device seek and/or latency time
3. Begin the transfer of the page to a free frame
6. While waiting, allocate the CPU to some other user
7. Receive an interrupt from the disk I/O subsystem (I/O completed)
8. Save the registers and process state for the other user
9. Determine that the interrupt was from the disk
10. Correct the page table and other tables to show page is now in memory
11. Wait for the CPU to be allocated to this process again
12. Restore the user registers, process state, and new page table, and then resume the
interrupted instruction
8.15 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Performance of Demand Paging (Cont.)
 Three major activities
 Service the interrupt – careful coding means just several hundred
instructions needed
 Read the page – lots of time
 Restart the process – again just a small amount of time
 Page Fault Rate 0  p  1
 if p = 0 no page faults
 if p = 1, every reference is a fault
 Effective Access Time (EAT)
EAT = (1 – p) x memory access
+ p (page fault overhead
+ swap page out
+ swap page in )
8.16 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Demand Paging Example
 Memory access time = 200 nanoseconds
 Average page-fault service time = 8 milliseconds
 EAT = (1 – p) x 200 + p (8 milliseconds)
= (1 – p x 200 + p x 8,000,000
= 200 + p x 7,999,800
 If one access out of 1,000 causes a page fault, then
EAT = 8.2 microseconds.
This is a slowdown by a factor of 40!!
 If want performance degradation < 10 percent
 220 > 200 + 7,999,800 x p
20 > 7,999,800 x p
 p < .0000025
 < one page fault in every 400,000 memory accesses
8.17 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
What Happens if There is no Free Frame?
 Page replacement – find some page in memory, but not
really in use, page it out
 Algorithm – terminate? swap out? replace the page?
 Performance – want an algorithm which will result in
minimum number of page faults
 Same page may be brought into memory several times
 Use modify (dirty) bit to reduce overhead of page
transfers – only modified pages are written to disk
8.18 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Why page replacement?
8.19 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Why page replacement?
8.20 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
8.21 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
8.22 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
8.23 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
8.24 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Page Replacement Algorithms
 Page-replacement algorithm
 Want lowest number of page-faults
 Evaluate algorithm by running it on a particular string of
memory references (reference string) and computing the
number of page faults on that string
 String is just page numbers, not full addresses
 Repeated access to the same page does not cause a
page fault
 Results depend on number of frames available
 In all our examples, the reference string of referenced
page numbers is
7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
8.25 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Graph of Page Faults Versus The Number of Frames
8.26 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
First-In-First-Out (FIFO) Algorithm
 Reference string: 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
 3 frames (3 pages can be in memory at a time per process)
 Number of page faults: 15
 To track ages of pages, just use a FIFO queue
8.27 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
 Consider string: 1,2,3,4,1,2,5,1,2,3,4,5
 Generally, adding more frames reduces page faults
If adding more frames causes more page faults, then it is
known as
Belady’s Anomaly
8.28 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
FIFO Illustrating Belady’s Anomaly
8.29 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Optimal Algorithm
 Replace page that will not be used for longest period of time
8.30 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Optimal Algorithm
 Replace page that will not be used for longest period of time
 Optimal page replacement algorithm gives minimum page faults
 Limitation: Can’t read the future
 Used for measuring how well any algorithm performs when
compared with optimal algorithm.
 Number of page faults for the above reference string: 9
8.31 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Least Recently Used (LRU) Algorithm
 Use past knowledge rather than future
 Replace page that has not been used in the most amount of
time
8.32 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Least Recently Used (LRU) Algorithm
 Use past knowledge rather than future
 Replace page that has not been used in the most amount of
time
 Associate time of last use with each page
 12 faults – better than FIFO
 Generally good algorithm and frequently used
 But how to implement?
8.33 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
LRU Algorithm (Cont.)
 Counter implementation
 Every page entry has a counter; every time page is
referenced through this entry, copy the clock into the
counter
 When a page needs to be changed, look at the counters to
find smallest value
 Stack implementation
 Keep a stack of page numbers in a double link form:
 But each update more expensive
 No search for replacement
 LRU and OPT are cases of stack algorithms that don’t have
Belady’s Anomaly
8.34 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Use Of A Stack to Record Most Recent Page References
8.35 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
LRU Approximation Algorithms
 LRU needs special hardware and still slow
 Reference bit
 With each page associate a bit, initially = 0
 When page is referenced bit set to 1
 Replace any with reference bit = 0 (if one exists)
 We do not know the order
 Second-chance algorithm
 Generally FIFO, plus hardware-provided reference bit
 Known as Clock page replacement algorithm
 If page to be replaced has
 Reference bit = 0 -> replace it
 reference bit = 1 then:
– set reference bit 0, leave page in memory
– replace next page, subject to same rules
8.36 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Second-Chance (clock) Page-Replacement Algorithm
8.37 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Enhanced Second-Chance Algorithm
 Improve algorithm by using reference bit and modify bit (if
available) in concert
 Take ordered pair (reference, modify)
1. (0, 0) neither recently used not modified – best page to
replace
2. (0, 1) not recently used but modified – not quite as good,
must write out before replacement
3. (1, 0) recently used but clean – probably will be used again
soon
4. (1, 1) recently used and modified – probably will be used
again soon and need to write out before replacement
 When page replacement called for, use the clock scheme but
use the four classes replace page in lowest non-empty class
 Might need to search circular queue several times
8.38 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Counting Algorithms
 Keep a counter of the number of references that have been
made to each page
 Not common
 Lease Frequently Used (LFU) Algorithm: replaces page
with smallest count
 Most Frequently Used (MFU) Algorithm: based on the
argument that the page with the smallest count was probably
just brought in and has yet to be used
8.39 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Allocation of Frames
 Each process needs minimum number of frames
 Maximum is total frames in the system
 Two major allocation schemes
 fixed allocation
 priority allocation
 Many variations
8.40 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Fixed Allocation
 Equal allocation – For example, if there are 100 frames (after
allocating frames for the OS) and 5 processes, give each process 20
frames
 Keep some as free frame buffer pool
 Proportional allocation – Allocate according to the size of process
m
S
s
p
a
m
s
S
p
s
i
i
i
i
i
i







for
allocation
frames
of
number
total
process
of
size m = 64
s1 =10
s2 =127
a1 =
10
137
´ 62 » 4
a2 =
127
137
´ 62 » 57
8.41 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Priority Allocation
 Use a proportional allocation scheme using priorities rather
than size
 If process Pi generates a page fault,
 select for replacement one of its frames
 select for replacement a frame from a process with lower
priority number
8.42 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Global vs. Local Page Replacement
 Global replacement – process selects a replacement frame from
the set of all frames; one process can take a frame from another
 But then process execution time can vary greatly
 But greater throughput so more common
 Local replacement – each process selects from only its own set
of allocated frames
 More consistent per-process performance
 But possibly underutilized memory
8.43 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Thrashing
 If a process does not have “enough” pages, the page-fault rate is very
high
 Page fault to get page
 Replace existing frame
 But quickly need replaced frame back
 This leads to:
 Low CPU utilization
 Operating system thinking that it needs to increase the degree of
multiprogramming
 Another process added to the system
 Thrashing  a process is busy swapping pages in and out
8.44 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
Thrashing (Cont.)
8.45 Silberschatz, Galvin and Gagne ©2013
Operating System Concepts – 9th Edition
How to handle thrashing:
Using Page-Fault Frequency
 Establish “acceptable” page-fault frequency (PFF) rate and
use local replacement policy
 If actual rate too low, process loses frame
 If actual rate too high, process gains frame

More Related Content

Similar to OS Virtual Memory Concepts

advanced operating systems chapter 9 virtual memory
advanced operating systems chapter 9 virtual memoryadvanced operating systems chapter 9 virtual memory
advanced operating systems chapter 9 virtual memoryhozaifafadl
 
Chapter 10 Operating Systems silberschatz
Chapter 10 Operating Systems silberschatzChapter 10 Operating Systems silberschatz
Chapter 10 Operating Systems silberschatzGiulianoRanauro
 
Page Replacement Algorithms.pptx
Page Replacement Algorithms.pptxPage Replacement Algorithms.pptx
Page Replacement Algorithms.pptxinfomerlin
 
Galvin-operating System(Ch10)
Galvin-operating System(Ch10)Galvin-operating System(Ch10)
Galvin-operating System(Ch10)dsuyal1
 
Ch10: Virtual Memory
Ch10: Virtual MemoryCh10: Virtual Memory
Ch10: Virtual MemoryAhmar Hashmi
 
ch8-1 (final Memory).pptx
ch8-1 (final Memory).pptxch8-1 (final Memory).pptx
ch8-1 (final Memory).pptxAnamRiaz31
 
OS memory management
OS memory management OS memory management
OS memory management laiba29012
 
OS Memory Management.pptx
OS Memory Management.pptxOS Memory Management.pptx
OS Memory Management.pptxAkshimaPurohit
 
Main memory operating system
Main memory   operating systemMain memory   operating system
Main memory operating systemIndhu Periys
 
The Council of Architecture (COA) has been constituted by the Government of I...
The Council of Architecture (COA) has been constituted by the Government of I...The Council of Architecture (COA) has been constituted by the Government of I...
The Council of Architecture (COA) has been constituted by the Government of I...OvhayKumar1
 
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgt
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgtch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgt
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgtaaravjamela
 
memory management.ppt
memory management.pptmemory management.ppt
memory management.pptAVUDAI1
 

Similar to OS Virtual Memory Concepts (20)

advanced operating systems chapter 9 virtual memory
advanced operating systems chapter 9 virtual memoryadvanced operating systems chapter 9 virtual memory
advanced operating systems chapter 9 virtual memory
 
Chapter 10 Operating Systems silberschatz
Chapter 10 Operating Systems silberschatzChapter 10 Operating Systems silberschatz
Chapter 10 Operating Systems silberschatz
 
Page Replacement Algorithms.pptx
Page Replacement Algorithms.pptxPage Replacement Algorithms.pptx
Page Replacement Algorithms.pptx
 
Galvin-operating System(Ch10)
Galvin-operating System(Ch10)Galvin-operating System(Ch10)
Galvin-operating System(Ch10)
 
Ch9 Virtual Memory
Ch9 Virtual MemoryCh9 Virtual Memory
Ch9 Virtual Memory
 
9.Virtual Memory
9.Virtual Memory9.Virtual Memory
9.Virtual Memory
 
Ch08
Ch08Ch08
Ch08
 
Paging.ppt
Paging.pptPaging.ppt
Paging.ppt
 
Ch10: Virtual Memory
Ch10: Virtual MemoryCh10: Virtual Memory
Ch10: Virtual Memory
 
ch8-1 (final Memory).pptx
ch8-1 (final Memory).pptxch8-1 (final Memory).pptx
ch8-1 (final Memory).pptx
 
ch9_virMem.pdf
ch9_virMem.pdfch9_virMem.pdf
ch9_virMem.pdf
 
OS memory management
OS memory management OS memory management
OS memory management
 
OS Memory Management.pptx
OS Memory Management.pptxOS Memory Management.pptx
OS Memory Management.pptx
 
ch8.ppt
ch8.pptch8.ppt
ch8.ppt
 
ch8 (2).ppt
ch8 (2).pptch8 (2).ppt
ch8 (2).ppt
 
Main memory operating system
Main memory   operating systemMain memory   operating system
Main memory operating system
 
The Council of Architecture (COA) has been constituted by the Government of I...
The Council of Architecture (COA) has been constituted by the Government of I...The Council of Architecture (COA) has been constituted by the Government of I...
The Council of Architecture (COA) has been constituted by the Government of I...
 
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgt
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgtch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgt
ch8.ppt ejejnenjfjrnjnrjngjngktgtmtommgt
 
ch8.ppt
ch8.pptch8.ppt
ch8.ppt
 
memory management.ppt
memory management.pptmemory management.ppt
memory management.ppt
 

Recently uploaded

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 

Recently uploaded (20)

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 

OS Virtual Memory Concepts

  • 1. Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition U3_Virtual Memory
  • 2. 8.2 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Virtual Memory  Background  Demand Paging  Copy-on-Write  Page Replacement  Allocation of Frames  Thrashing  Memory-Mapped Files  Allocating Kernel Memory  Other Considerations  Operating-System Examples
  • 3. 8.3 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Objectives  To describe the benefits of a virtual memory system  To explain the concepts of demand paging, page-replacement algorithms, and allocation of page frames  To discuss the principle of the working-set model  To examine the relationship between shared memory and memory-mapped files  To explore how kernel memory is managed
  • 4. 8.4 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Background  Code needs to be in memory to execute, but entire program rarely used  Error code, unusual routines, large data structures  Entire program code not needed at same time  Consider ability to execute partially-loaded program  Program no longer constrained by limits of physical memory  Each program takes less memory while running -> more programs run at the same time Increased CPU utilization and throughput with no increase in response time or turnaround time  Less I/O needed to load or swap programs into memory -> each user program runs faster
  • 5. 8.5 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 6. 8.6 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Background (Cont.)  Virtual memory –  Only part of the program needs to be in memory for execution  Logical address space can therefore be much larger than physical address space  Allows address spaces to be shared by several processes  Allows for more efficient process creation  More programs running concurrently  Less I/O needed to load or swap processes
  • 7. 8.7 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Background (Cont.)  Virtual memory:  Physical memory organized in page frames  MMU must map logical to physical  Virtual memory can be implemented via:  Demand paging  Demand segmentation
  • 8. 8.8 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Demand Paging  Bring a page into memory only when it is needed  Less I/O needed, no unnecessary I/O  Less memory needed  Faster response  More users  Page is needed  invalid reference  abort  not-in-memory  bring to memory and reference it  Already-in-memory  reference it  Lazy swapper – never swaps a page into memory unless page will be needed  Swapper that deals with pages is a pager
  • 9. 8.9 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Valid-Invalid Bit  With each page table entry a valid–invalid bit is associated (v  in-memory – memory resident, i  not-in-memory)  Initially valid–invalid bit is set to i on all entries  Example of a page table snapshot: During MMU address translation, if valid–invalid bit in page table entry is i  page fault
  • 10. 8.10 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Demand paging: Page Table When Some Pages Are Not in Main Memory
  • 11. 8.11 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Page Fault  If there is a reference to a page, first reference to that page will trap to operating system: page fault 1. Operating system looks at page table to decide:  Invalid reference  abort  Not in memory: means page fault 2. Find free frame 3. Swap page into frame via scheduled disk operation 4. Reset tables to indicate page now in memory Set validation bit = v 5. Restart the instruction that caused the page fault
  • 12. 8.12 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Steps in Handling a Page Fault
  • 13. 8.13 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Steps in Handling a Page Fault
  • 14. 8.14 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Performance of Demand Paging  Stages in Demand Paging (worse case) 1. Trap to the operating system 2. Save the user registers and process state 3. Determine that the interrupt was a page fault 4. Check that the page reference was legal and determine the location of the page on the disk 5. Issue a read from the disk to a free frame: 1. Wait in a queue for this device until the read request is serviced 2. Wait for the device seek and/or latency time 3. Begin the transfer of the page to a free frame 6. While waiting, allocate the CPU to some other user 7. Receive an interrupt from the disk I/O subsystem (I/O completed) 8. Save the registers and process state for the other user 9. Determine that the interrupt was from the disk 10. Correct the page table and other tables to show page is now in memory 11. Wait for the CPU to be allocated to this process again 12. Restore the user registers, process state, and new page table, and then resume the interrupted instruction
  • 15. 8.15 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Performance of Demand Paging (Cont.)  Three major activities  Service the interrupt – careful coding means just several hundred instructions needed  Read the page – lots of time  Restart the process – again just a small amount of time  Page Fault Rate 0  p  1  if p = 0 no page faults  if p = 1, every reference is a fault  Effective Access Time (EAT) EAT = (1 – p) x memory access + p (page fault overhead + swap page out + swap page in )
  • 16. 8.16 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Demand Paging Example  Memory access time = 200 nanoseconds  Average page-fault service time = 8 milliseconds  EAT = (1 – p) x 200 + p (8 milliseconds) = (1 – p x 200 + p x 8,000,000 = 200 + p x 7,999,800  If one access out of 1,000 causes a page fault, then EAT = 8.2 microseconds. This is a slowdown by a factor of 40!!  If want performance degradation < 10 percent  220 > 200 + 7,999,800 x p 20 > 7,999,800 x p  p < .0000025  < one page fault in every 400,000 memory accesses
  • 17. 8.17 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition What Happens if There is no Free Frame?  Page replacement – find some page in memory, but not really in use, page it out  Algorithm – terminate? swap out? replace the page?  Performance – want an algorithm which will result in minimum number of page faults  Same page may be brought into memory several times  Use modify (dirty) bit to reduce overhead of page transfers – only modified pages are written to disk
  • 18. 8.18 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Why page replacement?
  • 19. 8.19 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Why page replacement?
  • 20. 8.20 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 21. 8.21 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 22. 8.22 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 23. 8.23 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition
  • 24. 8.24 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Page Replacement Algorithms  Page-replacement algorithm  Want lowest number of page-faults  Evaluate algorithm by running it on a particular string of memory references (reference string) and computing the number of page faults on that string  String is just page numbers, not full addresses  Repeated access to the same page does not cause a page fault  Results depend on number of frames available  In all our examples, the reference string of referenced page numbers is 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1
  • 25. 8.25 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Graph of Page Faults Versus The Number of Frames
  • 26. 8.26 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition First-In-First-Out (FIFO) Algorithm  Reference string: 7,0,1,2,0,3,0,4,2,3,0,3,0,3,2,1,2,0,1,7,0,1  3 frames (3 pages can be in memory at a time per process)  Number of page faults: 15  To track ages of pages, just use a FIFO queue
  • 27. 8.27 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition  Consider string: 1,2,3,4,1,2,5,1,2,3,4,5  Generally, adding more frames reduces page faults If adding more frames causes more page faults, then it is known as Belady’s Anomaly
  • 28. 8.28 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition FIFO Illustrating Belady’s Anomaly
  • 29. 8.29 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Optimal Algorithm  Replace page that will not be used for longest period of time
  • 30. 8.30 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Optimal Algorithm  Replace page that will not be used for longest period of time  Optimal page replacement algorithm gives minimum page faults  Limitation: Can’t read the future  Used for measuring how well any algorithm performs when compared with optimal algorithm.  Number of page faults for the above reference string: 9
  • 31. 8.31 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Least Recently Used (LRU) Algorithm  Use past knowledge rather than future  Replace page that has not been used in the most amount of time
  • 32. 8.32 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Least Recently Used (LRU) Algorithm  Use past knowledge rather than future  Replace page that has not been used in the most amount of time  Associate time of last use with each page  12 faults – better than FIFO  Generally good algorithm and frequently used  But how to implement?
  • 33. 8.33 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition LRU Algorithm (Cont.)  Counter implementation  Every page entry has a counter; every time page is referenced through this entry, copy the clock into the counter  When a page needs to be changed, look at the counters to find smallest value  Stack implementation  Keep a stack of page numbers in a double link form:  But each update more expensive  No search for replacement  LRU and OPT are cases of stack algorithms that don’t have Belady’s Anomaly
  • 34. 8.34 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Use Of A Stack to Record Most Recent Page References
  • 35. 8.35 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition LRU Approximation Algorithms  LRU needs special hardware and still slow  Reference bit  With each page associate a bit, initially = 0  When page is referenced bit set to 1  Replace any with reference bit = 0 (if one exists)  We do not know the order  Second-chance algorithm  Generally FIFO, plus hardware-provided reference bit  Known as Clock page replacement algorithm  If page to be replaced has  Reference bit = 0 -> replace it  reference bit = 1 then: – set reference bit 0, leave page in memory – replace next page, subject to same rules
  • 36. 8.36 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Second-Chance (clock) Page-Replacement Algorithm
  • 37. 8.37 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Enhanced Second-Chance Algorithm  Improve algorithm by using reference bit and modify bit (if available) in concert  Take ordered pair (reference, modify) 1. (0, 0) neither recently used not modified – best page to replace 2. (0, 1) not recently used but modified – not quite as good, must write out before replacement 3. (1, 0) recently used but clean – probably will be used again soon 4. (1, 1) recently used and modified – probably will be used again soon and need to write out before replacement  When page replacement called for, use the clock scheme but use the four classes replace page in lowest non-empty class  Might need to search circular queue several times
  • 38. 8.38 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Counting Algorithms  Keep a counter of the number of references that have been made to each page  Not common  Lease Frequently Used (LFU) Algorithm: replaces page with smallest count  Most Frequently Used (MFU) Algorithm: based on the argument that the page with the smallest count was probably just brought in and has yet to be used
  • 39. 8.39 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Allocation of Frames  Each process needs minimum number of frames  Maximum is total frames in the system  Two major allocation schemes  fixed allocation  priority allocation  Many variations
  • 40. 8.40 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Fixed Allocation  Equal allocation – For example, if there are 100 frames (after allocating frames for the OS) and 5 processes, give each process 20 frames  Keep some as free frame buffer pool  Proportional allocation – Allocate according to the size of process m S s p a m s S p s i i i i i i        for allocation frames of number total process of size m = 64 s1 =10 s2 =127 a1 = 10 137 ´ 62 » 4 a2 = 127 137 ´ 62 » 57
  • 41. 8.41 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Priority Allocation  Use a proportional allocation scheme using priorities rather than size  If process Pi generates a page fault,  select for replacement one of its frames  select for replacement a frame from a process with lower priority number
  • 42. 8.42 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Global vs. Local Page Replacement  Global replacement – process selects a replacement frame from the set of all frames; one process can take a frame from another  But then process execution time can vary greatly  But greater throughput so more common  Local replacement – each process selects from only its own set of allocated frames  More consistent per-process performance  But possibly underutilized memory
  • 43. 8.43 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Thrashing  If a process does not have “enough” pages, the page-fault rate is very high  Page fault to get page  Replace existing frame  But quickly need replaced frame back  This leads to:  Low CPU utilization  Operating system thinking that it needs to increase the degree of multiprogramming  Another process added to the system  Thrashing  a process is busy swapping pages in and out
  • 44. 8.44 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition Thrashing (Cont.)
  • 45. 8.45 Silberschatz, Galvin and Gagne ©2013 Operating System Concepts – 9th Edition How to handle thrashing: Using Page-Fault Frequency  Establish “acceptable” page-fault frequency (PFF) rate and use local replacement policy  If actual rate too low, process loses frame  If actual rate too high, process gains frame