Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

SUPERIOR GROUP OF

COLLEGES OKARA
CAMPUS

Class:
ADP(cs) 4
Subject:
Operating System
Assignment:
Swap Space Management
Submitted by:
Ifrah Mazhar
Roll No. 04
Submitted to:
Prof. Sana Rehmat
Swap-Space Management
Swapping is a memory management technique used in multi-programming to
increase the number of process sharing the CPU. It is a technique of removing a
process from main memory and storing it into secondary memory, and then
bringing it back into main memory for continued execution. This action of moving
a process out from main memory to secondary memory is called Swap Out and the
action of moving a process out from secondary memory to main memory is
called Swap In.

Swap-Space :
The area on the disk where the swapped out processes are stored is called
swap space.
Swap-Space Management :
Swap-Swap management is another low-level task pf the operating system.
Disk space is used as an extension of main memory by the virtual memory. As we
know the fact that disk access is much slower than memory access, In the swap-
space management we are using disk space, so it will significantly decrease system
performance. Basically, in all our systems we require the best throughput, so the
goal of this swap-space implementation is to provide the virtual memory the best
throughput. In these article, we are going to discuss how swap space is used, where
swap space is located on disk, and how swap space is managed.
Swap-Space Use :
Swap-space is used by the different operating-system in various ways. The
systems which are implementing swapping may use swap space to hold the entire
process which may include image, code and data segments. Paging systems may
simply store pages that have been pushed out of the main memory. The need of
swap space on a system can vary from a megabyte to gigabytes but it also depends
on the amount of physical memory, the virtual memory it is backing and the way in
which it is using the virtual memory.
It is safer to overestimate than to underestimate the amount of swap space required,
because if a system runs out of swap space it may be forced to abort the processes
or may crash entirely. Overestimation wastes disk space that could otherwise be
used for files, but it does not harm other.
Following table shows different system using amount of swap space:

System Swap-Space
1) Solaris Equal Amount of physical memory
2) Linux Double the Amount of physical memory

Explanation of above table :


Solaris, setting swap space equal to the amount by which virtual memory
exceeds page-able physical memory. In the past Linux has suggested setting swap
space to double the amount of physical memory. Today, this limitation is gone, and
most Linux systems use considerably less swap space.
Including Linux, some operating systems; allow the use of multiple swap spaces,
including both files and dedicated swap partitions. The swap spaces are placed on
the disk so the load which is on the I/O by the paging and swapping will spread
over the system’s bandwidth.
Swap-Space Location:

Swap-Space resides in

Separate Disk
Normal File System
Partition

A swap space can reside in one of the two places: -


 Normal file system
 Separate disk partition
Let, if the swap-space is simply a large file within the file system. To create it,
name it and allocate its space normal file-system routines can be used. This
approach, through easy to implement, is inefficient. Navigating the directory
structures and the disk-allocation data structures takes time and extra disk access.
During reading or writing of a process image, external fragmentation can greatly
increase swapping times by forcing multiple seeks.
There is also an alternate to create the swap space which is in a separate raw
partition. There is no presence of any file system in this place. Rather, a swap
space storage manager is used to allocate and de-allocate the blocks. from the raw
partition. It uses the algorithms for speed rather than storage efficiency, because
we know the access time of swap space is shorter than the file system. By
this Internal fragmentation increases, but it is acceptable, because the life span of
the swap space is shorter than the files in the file system. Raw partition approach
creates fixed amount of swap space in case of the disk partitioning.
Some operating systems are flexible and can swap both in raw partitions and in the
file system space, example: Linux.
An Example Of Swap-Space Management:
The traditional UNIX kernel started with an implementation of swapping
that copied entire process between contiguous disk regions and memory. UNIX
later evolve to a combination of swapping and paging as paging hardware became
available. In Solaris, the designers changed standard UNIX methods to improve
efficiency. More changes were made in later versions of Solaris, to improve the
efficiency.
Linux is almost similar to Solaris system. In both the systems the swap space is
used only for anonymous memory, it is that kind of memory which is not backed
by any file. In the Linux system, one or more swap areas are allowed to be
established. A swap area may be in either in a swap file on a regular file system or
a dedicated file partition.0

Swap-Area
Page
Slot

Swap Partition or
Swap File

Swap Map 1 0 3 0 1
Each swap area consists of 4-KB page slots, which are used to hold the swapped
pages. Associated with each swap area is a swap-map- an array of integers
counters, each corresponding to a page slot in the swap area. If the value of the
counter is 0 it means page slot is occupied by swapped page. The value of counter
indicates the number of mappings to the swapped page. For example, a value 3
indicates that the swapped page is mapped to the 3 different processes

You might also like