×

What is Demand Paging?

Demand Paging is defined as a process in which the pages are loaded into the memory (when the page fault occurs) or on-demand.

It consists of the following steps:

What is Demand Paging
  1. If there is a page that CPU wants to refer, but currently in the Main Memory, that page is not available, then in this situation, an interrupt is generated by the CPU, which indicates that there is memory access fault.
  2. With the help of an operating system, the process which is interrupted is put into the blocking state. To proceed the execution, the operating system takes the page which is needed into the Main Memory.
  3. For the required page, the operating system will search in the logical address space.
  4. From the logical address space to the physical address space, the needed page will be carried.

We use page replacement algorithms to decide which page is replaced in the physical address space. Accordingly, we update the page table.

  • Then, to continue the execution of the program, the signal is sent to the CPU, and the CPU will again place the process into the ready state.

Therefore, the operating system uses the above steps at the time when page fault has occurred, and the needed page is taken into the memory.

Advantages of Demand Paging

The advantages of demand paging are:

  1. Memory can be used more efficiently.
  2. If we use demand paging, then we can have a large virtual memory.
  3. By using demand paging, we can run programs that are larger than physical memory.
  4. In demand paging, there is no requirement of compaction.
  5. In demand paging, the sharing of pages is easy.
  6. In demand paging, partition management is simple because of the fixed partition size and the discontinuous loading.

Disadvantages of Demand Paging

The disadvantages of demand paging are:

  1. In demand paging, there may be a chance of internal fragmentation.
  2. The memory access time is longer (page table lookup).

What is a Page Fault?

Page Fault is a condition in which the page that is referred or requested does not exist in the main memory.  A Page fault is also known as Page miss.

In other words, a page fault is defined as a condition in which the OS (operating system) cannot find the needed data or information in the virtual memory.

Swapping

The process of swapping means removing all the pages of the process from memory, or marking the pages so that we can remove the pages with the help of the page replacement process.

If the process is suspended, it means the process cannot run. but we can swap out the process for sometime. After some time, the process can be swapped back by the system from the secondary memory to the primary memory. The situation where a process is busy with the pages being swapped in and out of that situation is known as thrashing.

Swapping

Thrashing

In thrashing, for any process, there are only some pages which are present in the main memory so we can maintain more processes in the memory. With this, the time is also saved because, for unused pages, there is no requirement of swap-in and swap-out of memory.

Although the operating system should be crafty so that it can handle this scheme. Practically in the steady-state, pages of the processes will occupy the entire main memory. So, the operating system and the processor have direct access to more processes. Therefore, it is must when the operating system carries one page in, and then another page should be thrown out. When the operating system throws a page out before the usage of the page, then in this condition, the operating system will again get the page instantly.

Instead of executing an instruction, system takes more time in the swapping of the pages. So, there is a need of a suitable page replacement algorithm.

We can see in the below diagram that the initial degree of multiprogramming is up to some extent of point (lamda), the utilization of the CPU is too high and 100% the resources of the system are used but if in case the degree of multiprogramming is increased then the utilization of the CPU will fall down extremely, and for the page replacement the system will spent its more time and time taken to finish the process execution is also increased. And this condition is known as thrashing.

Causes of Thrashing

The causes of thrashing are:

  1. Lack of Frames
  2. The high degree of multiprogramming
  1. Lack of Frames: - In this, if the process has less frames, then there will be less pages of that process that are able to exist in the memory. So, there is a need of frequent swapping in and frequent swapping out, and that may cause thrashing. So, in order to avoid thrashing, we need a suitable number of frames for allocation each process.
  2. High Degree of Multiprogramming: - In the memory, if the processes are getting increased, then the number of frames allocated to each process will decrease. So, in this way, there will be a fewer frame available for every process. And because of that, there will be more page fault, and the time of CPU get wasted only in the swapping in and out of pages, and the utilization of the CPU will also be decreased.

Recovery of Thrashing

  1. If there is already a thrashing in the system, then the mid-term scheduler will be instructed that it suspend a few of the processes to recover the system from the thrashing.
  2. To improve the thrashing, we do not permit the system to enter into a thrashing by instructing the long-term scheduler that, after the threshold, it will not take any process into the memory.

Related Topics

CPU Scheduling in OS

What is Scheduling? Scheduling is the process that is used to share the computing resources such as memory, processor time, and bandwidth to the different processes, data flows, threads, and applications that need...

5 minutes read.

Free Space Management in Operating System

What is Free Space Management? The system always keeps the records of the free disks blocks for allocating space to files when they are created. To use the space free from...

4 minutes read.

Multiprogramming Operating System

You will discover more about the multiprogramming operating system in this post, including how it functions and its benefits and drawbacks. Each process needs several types of system time, including CPU...

4 minutes read.

Feedback Queue in Operating System

In a computer or a laptop, there is a processor which do all the tasks. The processor cannot do all the tasks at a time. So, the tasks will be...

3 minutes read.

Monitors in Operating System

Monitors in Operating System Monitors are used for process synchronization. With the help of programming languages, we can use a monitor to achieve mutual exclusion among the processes. Example of monitors:...

3 minutes read.

Operating System Services

The Operating System provides various types of services:   I/O operationProgram executionFile system manipulationCommunicationError HandlingResource allocationAccountingProtection 1. I/O Operation: - To execute a program, needs I/O, which consists of a file, or I/O device. Due to the protection...

3 minutes read.

Kernel in OS

What is Kernel in OS? The kernel is the core component in the operating system. The job of the kernel is to handle the communication between the hardware and the software. ...

2 minutes read.

Difference between Seek Time and Disk Access Time in Disk Scheduling

Seek Time The time taken for the hard disk controller to detect a specific piece of recorded data is known as the seek time. The amount of time it takes to...

4 minutes read.

DOS Operating System

What is DOS Operating System? An operating system that runs from a hard disk drive is known as the DOS (Disk Operating System).In other words, DOS (Disk Operating System) is defined...

7 minutes read.

Priority Scheduling in OS

Priority Scheduling is a type of CPU Scheduling algorithm which is used for process scheduling. In Priority Scheduling, we assign some priorities to each process. The process which has higher priority among all...

5 minutes read.

Interested Variable Mechanism

Interested Variable Mechanism It is a must to provide progress to the process synchronization mechanism. In variable mechanism, if there is a process that doesn’t need to enter into the critical section, then due...

5 minutes read.

Look Disk Scheduling

Look Disk Scheduling Look disk scheduling is another type of disk scheduling algorithm. Look scheduling is an enhanced version of SCAN disk scheduling. Look disk scheduling is the same as SCAN disk scheduling,...

4 minutes read.

Two Phase Locking Protocol

What is two phase locking? Two-phase locking is a concurrency control method in a database and transaction processing system. It ensures that transactions are executed in a serializable manner by requiring...

4 minutes read.

Fixed Partitioning in Operating System

Fixed Partitioning in OS Fixed Partitioning is also known as Contiguous memory allocation. Fixed Partitioning is the easiest method, which is used to load more than one process into the main memory. In Fixed...

5 minutes read.

Memory Management in Operating System

The term "Main Memory" refers to the computer's internal physical memory. It is distinguished from external mass storage devices like disk drives by using the term "main." RAM is another...

4 minutes read.

File in Operating System

What is File in Operating System?  A file is defined as a collection of the interrelated information that is stored in the secondary memory or the non-volatile memory such as optical...

4 minutes read.

Difference between Process and Program in the Operating System

What is a process in the Operating System? A process is a program that is going through the execution. It also helps us to execute all the lines of code in...

4 minutes read.

Page Table in Operating System

What is a Page Table? A page table is a data structure used by an operating system (OS) to store information about the physical location of the pages in a computer's...

6 minutes read.

Advantages of UNIX Operating System

What is UNIX OS? UNIX is a family of multitasking, multiuser operating systems that are used on a wide variety of computer platforms. It was developed in the late 1960s and...

4 minutes read.

Round-Robin Scheduling Algorithm in OS

Round-Robin is a Preemptive Scheduling Algorithm and is the most commonly used algorithm in CPU Scheduling.In this, each Process is assigned with a fix time interval to execute, which is...

5 minutes read.