Download as pdf or txt
Download as pdf or txt
You are on page 1of 6

INTRODUCTION

DEFINITION OF PAGING

Paging is a technique that allows a computer to use more


memory than it has physically available by storing and
retrieving data from the secondary storage(such as a hard
disk) to the primary storage(such as RAM).
Paging divides the memory into fixed-size blocks called
pages and frames, and maps the logical addresses of a
process to the physical addresses of the memory. Paging
improves the performance and efficiency of memory
management by reducing internal fragmentation and
enabling memory allocation on demand. Paging also
requires a data structure called a page table to keep track
of the mapping between pages and frames.

HOW PAGING WORKS?

Paging is a method of writing data to, and reading it


from, secondary storage for use in primary storage,
also known as memory. The operating system
retrieves data from secondary storage in same-size
blocks called pages. The main real-world advantage
of paging over memory segmentation is that it
allows the physical address space of aprocess to be
noncontiguous.
COMPONENTS OF PAGING

1. Pages: These are fixed-size blocks into which a process’s


memory is divided.

2. Frames: The physical memory is divided into fixed-size


blocks called frames, which are the same size as the
pages.

3. Page Table: This is a data structure used by the operating


system to maintain the mapping between the pages
and frames.

4. Memory Management Unit (MMU): This hardware


component translates logical addresses generated by
a CPU into physical addresses.

5. Secondary Storage: This is where pages are stored when


they are not in use.

6. Primary Storage (RAM): This is where frames are located


and where pages are loaded for the process to use.

In operation, when a process needs to access a portion of


its memory, it issues a request for the logical address of
the memory block. The MMU translates this logical address
into a physical address using the page table. The physical
address is then used to access the appropriate memory
location
PAGING PROCESS

Paging is a memory management scheme that eliminates


the need for a contiguous allocation of physical memory.
Here’s how the paging process works:

1. Page and Frame Division: The operating system divides


the physical memory into fixed-size blocks known as
frames. The size of a frame is determined by the
hardware’s memory management unit (MMU). The
operating system also divides each process into blocks
of the same size called pages.

2. Page Table Creation: For each process, the operating


system maintains a page table that maps the logical
adresses (page number and offset) to physical addresses.

3. Memory Request: When a process needs to access a


portion of its memory, it issues a request for the logical
address of the memory block.

4. Address Translation: The MMU translates the logical


address into a physical address. It uses the page number
to index the page table and find the corresponding frame
number. The offset is the same for both the logical and
physical addresses.

5. Memory Access: Once the MMU has the physical address,


it can access the memory location in the frame specified
by the physical address.

6. Page Fault Handling: If a process requests a page that


is not in memory (a page fault), the operating system
will select a frame (using a page replacement algorithm),
replace the current page in that frame with the requested
page from secondary storage, and update the page table
ADVANTAGES OF PAGING

1. Efficient use of memory: By breaking up memory into


fixed-size pages, paging allows the total memory to
be used effectively1. This is because each page can be
filled with data, reducing wasted memory.

2. Reduction of internal fragmentation: Because paging


uses fixed-size pages, it can reduce internal
fragmentation. Internal fragmentation occurs when
memory is divided into variable-sized blocks, which
can lead to small amounts of wasted memory.

3. Increased process isolation and security: Each process


has its own set of page tables, which helps to isolate
processes from each other. This can increase security,
as one process cannot access the memory of another
process without permission.
DISADVANTAGES OF PAGING

1. Overhead And Latency: Paging introduces overhead and


latency, as the operating system must constantly monitor
and manage the paging system. This can lead to slower
performance, especially if the system is not optimized or
if there are too many processes competing for resources.

2. Fragmentation And Disk Space: Although paging can


help reduce fragmentation in memory, it can also
create fragmentation on the hard drive. This is because
the operating system must store pages of data on the
disk, which can become scattered and disorganized over
time. This can also lead to increased disk space usage,
which can be a problem for systems with limited storage.

3. Increased Complexity: Paging adds another layer of


complexity to the operating system, which can make it
more difficult to understand and troubleshoot. This can
be a problem for users who are not familiar with the
paging system, or for developers who must work with
complex memory management algorithms.
CONCLUSION

Paging is a crucial component of modern operating


systems, providing an efficient and effective method for
managing memory. It allows the physical address space
of a process to be noncontiguous, which eliminates the
need for ntiguous allocation of physical memory.
This leads to more efficient use of memory and reduces
internal ragmentation.

Looking ahead, several trends are emerging in memory


management. These include the use of Flash storage to
supplement memory, the adoption of Non-Volatile
Memory express (NVMe) to augment memory, and the
development of more efficient memory management
techniques. Emerging memory markets such as
STT-MRAM, ReRAM, PCRAM, FeRAM, and 3D XPoint
Memory are expected to reach $36B by 20301. These
advances promise to further enhance the performance
and capabilities of memory management in operating
systems.

You might also like