1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Marat540 [252]
3 years ago
7

Memory Question!

Engineering
1 answer:
mafiozo [28]3 years ago
7 0

Answer:

Demand Paging

The basic idea behind demand paging is that when a process is swapped in, its pages are not swapped in all at once. Rather they are swapped in only when the process needs them. ( on demand. ) This is termed a lazy swapper, although a pager is a more accurate term.

Figure 9.4 - Transfer of a paged memory to contiguous disk space

9.2.1 Basic Concepts

The basic idea behind paging is that when a process is swapped in, the pager only loads into memory those pages that it expects the process to need ( right away. )

Pages that are not loaded into memory are marked as invalid in the page table, using the invalid bit. ( The rest of the page table entry may either be blank or contain information about where to find the swapped-out page on the hard drive. )

If the process only ever accesses pages that are loaded in memory ( memory resident pages ), then the process runs exactly as if all the pages were loaded in to memory.

Figure 9.5 - Page table when some pages are not in main memory.

On the other hand, if a page is needed that was not originally loaded up, then a page fault trap is generated, which must be handled in a series of steps:

The memory address requested is first checked, to make sure it was a valid memory request.

If the reference was invalid, the process is terminated. Otherwise, the page must be paged in.

A free frame is located, possibly from a free-frame list.

A disk operation is scheduled to bring in the necessary page from disk. ( This will usually block the process on an I/O wait, allowing some other process to use the CPU in the meantime. )

When the I/O operation is complete, the process's page table is updated with the new frame number, and the invalid bit is changed to indicate that this is now a valid page reference.

The instruction that caused the page fault must now be restarted from the beginning, ( as soon as this process gets another turn on the CPU. )

Figure 9.6 - Steps in handling a page fault

In an extreme case, NO pages are swapped in for a process until they are requested by page faults. This is known as pure demand paging.

In theory each instruction could generate multiple page faults. In practice this is very rare, due to locality of reference, covered in section 9.6.1.

The hardware necessary to support virtual memory is the same as for paging and swapping: A page table and secondary memory. ( Swap space, whose allocation is discussed in chapter 12. )

A crucial part of the process is that the instruction must be restarted from scratch once the desired page has been made available in memory. For most simple instructions this is not a major difficulty. However there are some architectures that allow a single instruction to modify a fairly large block of data, ( which may span a page boundary ), and if some of the data gets modified before the page fault occurs, this could cause problems. One solution is to access both ends of the block before executing the instruction, guaranteeing that the necessary pages get paged in before the instruction begins.

9.2.2 Performance of Demand Paging

Obviously there is some slowdown and performance hit whenever a page fault occurs and the system has to go get it from memory, but just how big a hit is it exactly?

There are many steps that occur when servicing a page fault ( see book for full details ), and some of the steps are optional or variable. But just for the sake of discussion, suppose that a normal memory access requires 200 nanoseconds, and that servicing a page fault takes 8 milliseconds. ( 8,000,000 nanoseconds, or 40,000 times a normal memory access. ) With a page fault rate of p, ( on a scale from 0 to 1 ), the effective access time is now:

( 1 - p ) * ( 200 ) + p * 8000000

= 200 + 7,999,800 * p

which clearly depends heavily on p! Even if only one access in 1000 causes a page fault, the effective access time drops from 200 nanoseconds to 8.2 microseconds, a slowdown of a factor of 40 times. In order to keep the slowdown less than 10%, the page fault rate must be less than 0.0000025, or one in 399,990 accesses.

A subtlety is that swap space is faster to access than the regular file system, because it does not have to go through the whole directory structure. For this reason some systems will transfer an entire process from the file system to swap space before starting up the process, so that future paging all occurs from the ( relatively ) faster swap space.

Some systems use demand paging directly from the file system for binary code ( which never changes and hence does not have to be stored on a page operation ), and to reserve the swap space for data segments that must be stored. This approach is used by both Solaris and BSD Unix

You might be interested in
Flip-flops are normally used for all of the following applications, except ________. logic gates data storage frequency division
SpyIntel [72]

Flip-flops are normally used for all of the following applications, except  logic gates.

<h3>What are Flip flops?</h3>

Flip flops are known to be tools that are used for counting. They come in different ranges.

Note that Flip flops are one that can be seen on counters, storage registers, and others and as such, Flip-flops are normally used for all of the following applications, except  logic gates.

Learn more about  Flip flops from

brainly.com/question/4237777

#SPJ1

6 0
1 year ago
A hollow pipe is submerged in a stream of water so that the length of the pipe is parallel to the velocity of the water. If the
Arlecino [84]

Answer:

increases by a factor of 6.

Explanation:

Let us assume that the initial cross sectional area of the pipe is A m² while the initial velocity of the water is V m/s², hence the flow rate of the water is:

Initial flow rate = area * velocity = A * V = AV m³/s

The water speed doubles (2V m/s) and the cross-sectional area of the pipe triples (3A m²), hence the volume flow rate becomes:

Final flow rate = 2V * 3A = 6AV m³/s = 6 * initial flow rate

Hence, the volume flow rate of the water passing through it increases by a factor of 6.

8 0
3 years ago
Solid Isomorphous alloys strength
Sphinxa [80]

Answer:

Explanation:

ℎ

3 0
3 years ago
What should always be done before beginning any diagnosis?
vladimir2022 [97]

Answer:

c

Explanation:

if someone is wrong that they can help with

4 0
2 years ago
There are three options for heating a particular house: a. Gas: $1.33/therm where 1 therm=105,500 kJ b. Electric Resistance: $0.
sergejj [24]

Answer:

Option ‘a’ is the cheapest for this house.

Explanation:

Cheapest method of heating must have least cost per kj of energy. So, convert all the energy in the same unit (say kj) and take select the cheapest method to heat the house.

Given:

Three methods are given to heat a particular house are as follows:

Method (a)

Through Gas, this gives energy of amount $1.33/therm.

Method (b)

Through electric resistance, this gives energy of amount $0.12/KWh.

Method (c)

Through oil, this gives energy of amount $2.30/gallon.

Calculation:

Step1

Change therm to kj in method ‘a’ as follows:

C_{1}=\frac{\$ 1.33}{therm}\times(\frac{1therm}{105500kj})

C_{1}=1.2606\times10^{-5} $/kj.

Step2

Change kWh to kj in method ‘b’ as follows:

C_{2}=\frac{\$ 0.12}{kWh}\times(\frac{1 kWh }{3600kj})

C_{2}=3.334\times10^{-5} $/kj.

Step3

Change kWh to kj in method ‘c’ as follows:

C_{3}=\frac{\$ 2.30}{gallon}\times(\frac{1 gallon }{138500kj})

C_{3}=1.66\times10^{-5} $/kj.

Thus, the method ‘a’ has least cost as compare to method b and c.

So, option ‘a’ is the cheapest for this house.

 

5 0
2 years ago
Other questions:
  • A motor vehicle has a mass of 1.8 tonnes and its wheelbase is 3 m. The centre of gravity of the vehicle is situated in the centr
    14·1 answer
  • Harmony in music is characterized by _____.
    14·2 answers
  • Describe the are of mechanical engineering
    6·2 answers
  • It is the tool used to measure the amount of electric current​
    6·2 answers
  • Refrigerant-134a enters an adiabatic compressor at -30oC as a saturated vapor at a rate of 0.45 m3 /min and leaves at 900 kPa an
    13·1 answer
  • Name the four ways in which heat is transferred from a diesel engine
    7·1 answer
  • The figure below appeared three heat treatments processes of steel (A, B and C),
    14·1 answer
  • Select the correct answer. The most frequent maintenance task for a car is: A. Oil changes B. Tire replacements C. Coolant chang
    10·2 answers
  • Why do engineers play a variety of roles in the engineering process?
    6·1 answer
  • List five pieces of personal safety equipment which must be in everyday use in the workshop​
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!