Module 10 Vocab Flashcards

1
Q

Virtual Memory

A

virtual memory is the memory that is allocated to a process for storing its in-memory state. It is considered “virtual” because at creation, it is not yet mapped into physical memory locations. Virtual memory is broken down into the code, data, stack, and heap segments, creating a standardized memory representation between all processes. Virtual memory offers the OS a complete separation of logical and physical addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Segmentation

A

divides the address space into variable sized segments or logical addressable units. These include the code, stack, heap, and data segments.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Virtual Memory Page

A

a contiguous block of virtual memory addresses of a fixed range, which is the same as page frames. A page is the smallest unit of addressability to virtual memory available to the OS for memory management. Pages will not contain addresses from different segments of virtual memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Page Frames

A

a contiguous block of physical memory addresses of a fixed range, which is the same as the size of virtual memory pages. Virtual memory pages swapped into main memory from storage are mapped to page frames.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Disk Controller

A

enables the CPU to communicate with the disk storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Paging

A

Paging is the technique by which the OS swaps in various virtual memory pages as they are needed as virtual memory is typically much larger than physical memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Memory Management Unit (MMU)

A

translates virtual addresses to physical addresses. Divides the virtual address space into pages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Validity Bit

A

stored in the page table; 1 if a page is in memory and 0 if it is not

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Page Table

A

a table exists for each process to map from a page number to page frame

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Swap File

A

space in the hard disk that operates as an extension of the RAM for portions of the process virtual memory that do not fit in RAM. Pages can be stored in the swap file to create room for other processes to execute in RAM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Protection Bit

A

stored in the page table; set to read, write, or execute depending on the segment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Reference Bit

A

stored in the page table; allows us to detect pages that are frequently used by setting this bit to 1 when a page is accessed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Modified (“Dirty”) bit

A

stored in the page table; set to 1 if a page has been written to and 0 otherwise (on pure reads)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Multi-level paging

A

divide up the virtual addresses such that the highest order group indexes into a top level page table, the second highest order group indexes into the next level page table, and so on. When looking up in a multi-level page table, the corresponding bits of the page number are used to index into each level until we get to the page table of interest. This strategy is used because virtual memory is often larger than physical memory and each process has its own page table, thus the total amount of memory required to store page tables needs to be managed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Inverted Page Table

A

stores entries in the form of (page-frame, process ID, and page number), which is like a hash table, to help find the desired page frames and avoid a linear search of the page table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Offset

A

in the offset number, the lower order bits correspond to the offset at which we want to access addresses within a given page, and the higher order bits represent the page we want to access

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Transaction Lookaside Buffer (TLB)

A

small cache maintained within the MMU hardware to lookup pages before we go to main memory to retrieve the page table. The TLB is associative memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Page Fault

A

when a page is requested but is not currently in physical memory; causes a trap to the kernel

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Page Replacement

A

when a page is required, but physical memory is full, the page replacement process selects one of the current pages in physical memory to be written ut to disk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

FIFO

A

replace the longest resident page that is already in memory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Other Policies Include

A

second-chance algorithm, clock algorithm, least recently used algorithm (LRU), approximate LRU

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Stack Property

A

incrementing the amount of frames from m to m+1 cannot increase the number of page faults

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Belady’s Anomaly

A

some page replacement policies do not respect the stack algorithm property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the goal of memory management in virtual memory architecture?

A

To map virtual memory to physical memory for each process using the Memory Management Unit (MMU).

Ex. It’s like giving each process its own GPS to find the actual location of its data in RAM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is the MMU (Memory Management Unit)?

A

A hardware component that translates virtual addresses to physical addresses.

Ex. Like a translator converting room numbers (virtual) into actual building locations (physical).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is paging in virtual memory?

A

Dividing memory into fixed-size chunks (pages) to manage memory efficiently.

EX. Think of cutting a book into equal-sized pages so you can store or retrieve any page easily.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is segmentation in virtual memory?

A

Dividing memory into variable-size segments based on logical divisions like code, data, stack.

Ex. Like splitting a suitcase into flexible compartments based on item size.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is a frame?

A

A fixed-size chunk of physical memory (RAM) where a page can be stored.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is a page?

A

A fixed-size chunk of virtual memory that maps to a frame in RAM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

What is swap space?

A

Reserved disk space used when RAM is full to temporarily store pages.

Ex. Like using your hard drive as overflow storage when your desk is full.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

What is a page table?

A

A data structure that maps virtual pages to physical frames.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

What is a page fault?

A

When the CPU tries to access a page not currently in RAM.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

What is swapping?

A

Moving pages between RAM and disk (swap space).

Ex. Like rotating clothes in and out of storage when your closet is full.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

What is thrashing?

A

Excessive swapping that causes a system to slow down.

Ex. Like spending so much time getting files from storage that you stop working.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

What is virtual address space?

A

The total range of addresses a program can use, not all of which map to physical memory.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

Why is each page 4KB (2¹² bytes)?

A

It’s a standard size, allowing easy division and addressing.

EX. Makes math and hardware design simpler and efficient.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

What does VPN (Virtual Page Number) do?

A

Identifies which page a memory location belongs to.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

What is the offset in a virtual address?

A

Specifies the exact location within a page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

How is virtual address translated to physical?

A

The MMU uses the page number to look up the frame, combines it with the offset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

Why is mapping from virtual to physical memory not 1-to-1?

A

Pages can be mapped out of order, depending on availability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

What is the role of the page table in this mapping?

A

It links virtual page numbers to physical frame numbers.

36
Q

What does the MMU output?

A

A physical address in the form (frame number, offset).

37
Q

Where is the page table stored?

A

In physical memory, pointed to by each process’s PCB.

38
Q

What is a validity bit?

A

A bit indicating whether a page is in memory (1) or not (0).

39
Q

What is the dirty (modified) bit?

A

Indicates if a page has been written to; used to avoid unnecessary disk writes.

40
Q

What is the referenced bit?

A

Set by hardware when a page is accessed; used in page replacement algorithms.

41
Q

What is the swap file?

A

A file used to store pages that don’t currently fit in RAM.

42
Q

How are holes in the swap file reused?

A

A bitmap tracks used (1) and free (0) blocks to recycle space efficiently.

43
Q

What are the tradeoffs of large page sizes?

A

Fewer pages and smaller tables, but more internal fragmentation.

44
Q

What are the tradeoffs of small page sizes?

A

Less memory waste but larger page tables.

45
Q

Why can’t page tables fit in memory on 64-bit systems?

A

There are too many entries; the table would be too large.

46
Q

What is a multi-level page table?

A

A tree-like structure that breaks the page table into smaller pieces to save memory.

47
Q

What is an inverted page table?

A

Maps physical memory instead of virtual, reducing table size.

48
Q

What is the TLB (Translation Lookaside Buffer)?

A

A small hardware cache that stores recent page table entries for fast access.

49
Q

What happens if a page is not found in TLB?

A

A TLB miss occurs, and the system falls back to the full page table lookup.

50
Q

What happens during a page fault?

A

The system pauses the process, loads the required page from disk into RAM, updates the page table, and resumes execution.

51
Q

What is the role of a page replacement policy?

A

To decide which page to evict from RAM when space is needed.

52
Q

What is the problem with simple page tables for large programs?

A

They reserve too much space even if the program doesn’t use all of it, leading to wasted memory.

53
Q

What is the solution to overly large page tables?

A

Use multi-level paging to make it hierarchical, loading only parts of the page table as needed.

Ex. Like folders within folders on your computer.

54
Q

What is multi-level paging?

A

A method that organizes page tables as a tree, allowing only parts to be loaded into memory.

Ex. Instead of loading every contact in your phone, only load the group you’re texting.

55
Q

What is the tradeoff of multi-level paging?

A

It’s slower due to multiple lookups but saves memory. Speed loss is minimized using cache.

56
Q

What is a TLB (Translation Lookaside Buffer)?

A

A small, fast cache in the MMU that stores recently used page table entries.

57
Q

Why do we need a TLB?

A

Accessing main memory is slow (~10ns), while CPU cycles are fast (~1ns). TLB reduces the time by caching page table lookups.

58
Q

What happens if the TLB has the page info?

A

It’s a TLB hit — the CPU gets the physical address very fast.

59
Q

What happens on a TLB miss?

A

The system falls back to the full page table and may replace a TLB entry.

60
Q

What is associative memory in the context of TLBs?

A

It’s memory that is searched by content instead of address to quickly find if a mapping exists.

61
Q

What does a TLB entry contain?

A

Page number, frame number, reference bit, modified bit, and protection bits.

62
Q

What is the reference bit in a TLB?

A

It indicates if the page was accessed recently.
Ex. 1 for hot (used), 0 for cold (unused).

63
Q

What is the modified (dirty) bit in a TLB?

A

It indicates whether the page was changed. If so, it must be saved before eviction.

64
Q

What is the protection bit in a TLB?

A

It controls access rights like read-only, write, or no access.

65
Q

What happens when memory content is updated?

A

The corresponding TLB entry must be updated too (and vice versa).

66
Q

What is an inverted page table?

A

Instead of mapping virtual page → physical frame, it maps physical frame → virtual page.

67
Q

Why use inverted page tables?

A

To save space, especially useful on 64-bit systems with huge address spaces.

68
Q

What does an entry in an inverted page table contain?

A

A physical page frame, process ID, and virtual page number.

69
Q

How do you find a page frame in inverted page tables?

A

Using a hash table to map virtual pages to frames.

70
Q

What is a page fault?

A

A page fault happens when a program tries to access memory that isn’t currently in RAM.

Ex. A program tries to use data that was moved to disk, triggering a fetch.

71
Q

What is page replacement?

A

Swapping out an existing page from RAM to make room for a new one from disk.

Ex. Replacing a cold page in RAM with one the program needs now.

72
Q

What happens if the dirty bit is set during replacement?

A

The page is copied back to disk before eviction because it was changed.

A word doc page with edits needs saving before it’s removed from RAM.

73
Q

What is the dirty bit used for?

A

Shows whether a page has been modified in RAM and needs saving.

Ex. Dirty = changes made, needs saving.

74
Q

What is the goal of a page replacement policy?

A

Evict pages that are least likely to be used again soon.

75
Q

What is the optimal (OPT) page replacement policy?

A

Evicts the page that will be used farthest in the future. Not realistic.

76
Q

What is LRU (Least Recently Used)?

A

Removes the page that hasn’t been used in the longest time.

Ex. Like cleaning out your fridge by tossing the food you haven’t touched in weeks.

77
Q

What is the cost comparison of memory access types?

A

TLB lookup = small, page table = medium, disk access = very slow.

78
Q

What are two ways to improve virtual memory performance?

A
  1. Add more RAM. 2. Use better replacement policies (like LRU).
79
Q

What is a reference string?

A

A sequence of page requests by a program.
Ex. [2, 3, 2, 1, 5, 2…]

Shows the pages accessed and adds them to a list. Typically used in page replacement policy

80
Q

What is FIFO in page replacement?

A

First-in, first-out. Removes oldest page first, regardless of usage.

81
Q

What is the competitive ratio in paging?

A

Ratio of real algorithm’s page faults vs. OPT. Closer to 1 = better.

82
Q

How does the reference and modified bits help LRU approximation?

A

OS checks if pages were recently used or written to, helping decide eviction.

83
Q

What is the second-chance algorithm?

A

FIFO with a twist: If the page was recently used (R=1), don’t evict it yet—give it another try.

84
Q

What is the clock algorithm?

A

Like second-chance but uses a circular list with a ‘hand’ to point at pages. Evict if R=0, else give another chance.

85
Q

How does the counter-based LRU method work?

A

Each memory access updates a timestamp; oldest timestamp = evict. Very accurate but expensive.

86
Q

How does the list-based LRU method work?

A

Most recently used page goes to the end. Evict from the front.

Ex. Like a playlist where the newest song is added last.

87
Q

What is the aging algorithm?

A

Each page has an 8-bit counter. Every 40ms, shift right and add reference bit on left. Higher value = used recently.

88
Q

What is a stack algorithm?

A

An algorithm where more memory never increases page faults.

Ex. LRU is one.

89
Q

What is Belady’s Anomaly?

A

Adding more memory causes more page faults.

Ex. FIFO can cause this.

90
Q

What is thrashing?

A

System spends more time swapping pages than doing useful work.

Ex. Too many apps open, none run well.

91
Q

What is demand-paging in Linux?

A

Pages are loaded into memory only when needed.

Ex. Like loading apps on-demand rather than all at once.

92
Q

What is the role of the page daemon in Linux?

A

It manages paging, like deciding what to evict or keep in memory.

93
Q

What are the 4 types of pages in Linux?

A
  1. Unreclaimable – Kernel use, can’t evict 2. Swappable – User data, needs to go to disk when evicted 3. Syncable – Write immediately when dirtied 4. Discardable – Unused, can evict right away.
94
Q

What is the Linux page replacement strategy?

A

Uses two LRU lists: active and inactive. Evict from inactive first.

95
Q

When does Linux move a page to the inactive list?

A

If it hasn’t been referenced recently.

96
Q

When is a page moved back to the active list in Linux?

A

When it’s accessed again and its reference flag is set.