Final Practice Flashcards

1
Q
  1. Timeslices

On a single CPU system, consider the following workload and conditions:

10 I/O-bound tasks and 1 CPU-bound task

I/O-bound tasks issue an I/O operation once every 1 ms of CPU computing

I/O operations always take 10 ms to complete

Context switching overhead is 0.1 ms

I/O device(s) have infinite capacity to handle concurrent I/O requests

All tasks are long-running

Now, answer the following questions (for each question, round to the nearest percent):

What is the CPU utilization (%) for a round-robin scheduler where the timeslice is 20 ms?

What is the I/O utilization (%) for a round-robin scheduler where the timeslice is 20 ms?

A

Solution CPU utilization ((10 * 1ms) + 1 * 20ms) / ((10 * 1ms) + 1 * 20ms + 11 * 0.1ms ) = 30 / 31.1 = 97% I/O utilization the first I/O request is issued at 1 ms time the last I/O request is issued at (1 ms + 9 * 1ms + 9 * 0.1) = 10.9 ms, and it will take 10 ms to complete, so it will complete at 20.9 ms total time there are I/O requests being processed is 20.9 - 1 = 19.9 ms the CPU bound task will complete at time 31.1 ms (which is also the total time for the set of tasks) 19.9 / 31.1 = 64%

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Linux O(1)

Scheduler Problem For the next four questions, consider a Linux system with the following assumptions:

uses the O(1) scheduling algorithm for time sharing

threads must assign a time quantum for thread T1 with priority 110

must assign a time quantum for thread T2 with priority 135

Provide answers to the following:

Which thread has a “higher” priority (will be serviced first)?

Which thread is assigned a longer time quantum?

Assume T2 has used its time quantum without blocking. What will happen to the value that represents its priority level when T2 gets scheduled again (lower/decrease, higher/increase, same)?

Assume now that T2 blocks for I/O before its time quantum expired. What will happen to the value that represents its priority level when T2 gets scheduled again (lower/decrease, higher/increase, same)?

A

Solution t1 (in O(1) lower priority => greater numerical value; so t1 has higher priority) t1 (in O(1) lower priority tasks => smaller time quantum; so t1 will have longer time quantum) increase (since it used up all of its quantum without blocking, it means that it’s CPU bound, so it’s priority level should be lowered, which means the numerical value of its priority should be increased) decrease (since it blocked, it’s more I/O intensive, will get a boost in priority, which means that the numerical value will be decreased)

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

Problem Consider a quad-core machine with a single memory module connected to the CPU’s via a shared “bus”. On this machine, a CPU instruction takes 1 cycle, and a memory instruction takes 4 cycles. The machine has two hardware counters:

counter that measures IPC

counter that measures CPI

Answer the following:

What does IPC stand for in this context?

What does CPI stand for in this context?

What is the highest IPC on this machine?

What is the highest CPI on this machine?

A

Solution instructions per cycle cycles per instruction 4 (best case scenario: if all cores execute CPU-bound instructions, 4 instructions can be completed in a single cycle) 16 (worst case scenario: if all cores issue a memory instruction at the same time, the instructions will contend on the shared bus and the shared memory controller. so one of them can take up to 4 * 4 cycles = 16 cycles to complete)

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

In a multiprocessor system, a thread is trying to acquire a locked mutex. Should the thread spin until the mutex is released or block? Why might it be better to spin in some instances? What if this were a uniprocessor system?

A

Solution If owner of mutex is running on a another CPU -> spin; otherwise block Owner may release mutex quickly; may be faster to wait for owner to complete than to pay overhead for context switching twice. On uniprocessor, always block, there is no way for owner to be running at the same time, since there is only CPU.

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

For the following question, consider a multi-processor with write-invalidated cache coherence.

Determine whether the use of a dynamic (exponential backoff) delay has the same, better, or worse performance than a test-and-test-and-set (“spin on read”) lock. Then, explain why.

Make a performance comparison using each of the following metrics:

Latency

Delay

Contention

A

Solution same. if you look at the pseudocode for the two algorithms, if the lock is free then exactly the same operations will be executed in both cases. worse. because of the delay, the lock may be released while delaying, so the overall time that it will take to acquired a freed lock will be potentially longer better. in the delayed algorithm, some of the invalidations are not observed because of the wait, so those will not trigger additional memory accesses, therefore overall memory bus/interconnect contention is improved.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. Page Table Size Problem

Consider a 32-bit (x86) platform running Linux that uses a single-level page table. What are the maximum number of page table entries when the following page sizes are used? regular (4 kB) pages? large (2 MB) pages?

A

Solution regular 4kB pages: 32 - 12 bits = 20bits => need 2^20 entries for each virtual page large 2MB pages: 32 - 21bits = 11 bits => need 2^11 entries for each virtual page

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

Answer the following questions about PIO:

Considering I/O devices, what does PIO stand for?

List the steps performed by the OS or process running on the CPU when sending a network packet using PIO.

A

Solution programmed I/O write ‘command’ to the device to send a packet of appropriate size; copy the header and data in a contiguous memory location; copy data to NIC / device data transfer registers; read status register to confirm that copied data was successfully transmitted; repeat last two steps as many times as needed to transmit the full packet, until end-of-packet is reached.

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

Assume an inode has 12 direct pointers, a single indirect, a double indirect, and trible indirect. Also assume that each block pointer element is 4 bytes.

If a block on the disk is 4 kB, then what is the maximum file size that can be supported by this inode structure?

A

Solution For 4KB = 4kB / 4 = 1k elements: (12 * 4kB) + (1k * 4kB) + (1k^2 * 4kB) + (1k^3 * 4kB) = … Approx (using last term only) = (2^10)^3 * (2^2)*(2^10) = 2^(30+2+10) = 4TB

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. RPC Data Types Problem

A RPC routine get_coordinates() returns the N-dimensional coordinates of a data point, where each coordinate is an integer. Write the elements of the C data structure that corresponds to the 3D coordinates of a data point.

A

Solution The return value will be an array of N integers. Since it’s not specified what is the value of N, the type of the return argument in XDR will be defined as a variable length array of integers: int data<> When compiled with rpcgen, this data type will correspond to a data structure in C with two elements, an integer—len—that correspond to the value of N, and a pointer to an integer— val—which will correspond to the pointer to the integer array. int len (or length) int * val (or value… )

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

You are designing the new image datastore for an application that stores users’ images (like Picasa). The new design must consider the following scale:

The current application has 30 million users

Each user has on average 2,000 photos

Each photo is on average 500 kB

Requests are evenly distributed across all images

Answer the following:

Would you use replication or partitioning as a mechanism to ensure high responsiveness of the image store?

If you have 10 server machines at your disposal, and one of them crashes, what’s the percentage of requests that the image store will not be able to respond to, if any?

A

Solution

Partitioning. Current data set is ~30 PB, so cannot store it on one machine

10% since requests are evenly distributed.

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