Week 8 Locking Linked Lists Scheduling Algorithms Classes

  • Slides: 42
Download presentation
Week 8 Locking, Linked Lists, Scheduling Algorithms Classes COP 4610 / CGS 5765 Florida

Week 8 Locking, Linked Lists, Scheduling Algorithms Classes COP 4610 / CGS 5765 Florida State University 1

Concurrency Aspects of Project 2 n Synchronizing access to request queue(s) q q n

Concurrency Aspects of Project 2 n Synchronizing access to request queue(s) q q n Multiple producers may access request queue(s) at the same time Multiple consumers may access request queue(s) at the same time Synchronizing access to other global data

Elevator Concurrency Passengers may appear on a floor at the same time as an

Elevator Concurrency Passengers may appear on a floor at the same time as an elevator arrives at a floor The procfs display may be read at the same time that you're updating n n q q q n Number of passengers that you've serviced Total number of passengers on a given floor Other stuff, depending on your implementation How do you guarantee correctness?

Global Data vs. Local Data n Global data is declared at global scope, e.

Global Data vs. Local Data n Global data is declared at global scope, e. g. outside of any function body q n Often necessary for kernel programming Particularly sensitive to concurrency issues q Be extra careful when handling globals

Global Data vs. Local Data n n Local data is declared within a function

Global Data vs. Local Data n n Local data is declared within a function Local data is sensitive to concurrency issues when it depends on global data or when parallel access is possible q Think carefully about whether it needs to be synchronized 5

Synchronization Primitives n Semaphores q q n Mutexes q q n User space Kernel

Synchronization Primitives n Semaphores q q n Mutexes q q n User space Kernel space Spin locks q n User space Kernel space Atomic Functions

Synchronization Primitives (We'll Only Cover These) n Mutexes q q n User space Kernel

Synchronization Primitives (We'll Only Cover These) n Mutexes q q n User space Kernel space Does anyone remember the differences between a mutex and semaphore?

The Mutex Caught up in the mutex? 8

The Mutex Caught up in the mutex? 8

Mutexes n n Mutex – A construct to provide MUTual EXclusion Based on the

Mutexes n n Mutex – A construct to provide MUTual EXclusion Based on the concept of a semaphore Found at <source_dir>/include/linux/mutex. h Can be locked or unlocked q Only one thread of execution may hold the lock at a time

Kernel-Space Mutex Initialization n mutex_init(&mutex) n Declare and initialize a mutex q Only initialize

Kernel-Space Mutex Initialization n mutex_init(&mutex) n Declare and initialize a mutex q Only initialize it once

Kernel-Space Mutex - Locking n void mutex_lock(struct mutex *); n int n n mutex_lock()

Kernel-Space Mutex - Locking n void mutex_lock(struct mutex *); n int n n mutex_lock() can wait indefinitely mutex_lock_interruptible() locks a mutex as long as it is not interrupted q n mutex_lock_interruptible(struct mutex *); returns 0 if locking succeeded, < 0 if interrupted Use of the interruptible version is typically preferred

Kernel-Space Mutex – Unlocking n void mutex_unlock(struct mutex *); n Guarantees that the mutex

Kernel-Space Mutex – Unlocking n void mutex_unlock(struct mutex *); n Guarantees that the mutex is unlocked q Why is there no interruptible version of this function? 12

Kernel-Space Mutex Example /* Declare your mutex */ struct mutex my_mutex; /* Initialize your

Kernel-Space Mutex Example /* Declare your mutex */ struct mutex my_mutex; /* Initialize your mutex */ mutex_init(&my_mutex); /* Lock */ if(mutex_lock_interruptible(&my_mutex)) return -ERESTARTSYS; /* Do stuff to protected global variables */ /* Unlock */ mutex_unlock(&my_mutex); 13

User-Space Mutex n n Used with pthreads Might be useful if you are prototyping

User-Space Mutex n n Used with pthreads Might be useful if you are prototyping your elevator in user-space before porting to kernel 14

User-Space Mutex Initialization n int pthread_mutex_init(pthread_mutex_t *, NULL); n int pthread_mutex_destroy(pthread_mutex_t *); n n

User-Space Mutex Initialization n int pthread_mutex_init(pthread_mutex_t *, NULL); n int pthread_mutex_destroy(pthread_mutex_t *); n n Pthread_mutex_init() dynamically allocates a mutex Pthread_mutex_destroy() frees a mutex

User-Space Mutex - Locking n int pthread_mutex_lock(pthread_mutex_t *); n Returns 0 on locking, <

User-Space Mutex - Locking n int pthread_mutex_lock(pthread_mutex_t *); n Returns 0 on locking, < 0 otherwise

User-Space Mutex - Unlocking n int pthread_mutex_unlock(pthread_mutex_t *); n Returns 0 on unlocking, <

User-Space Mutex - Unlocking n int pthread_mutex_unlock(pthread_mutex_t *); n Returns 0 on unlocking, < 0 otherwise

Kernel Linked Lists More elegant than arrays, but takes some getting used to… 18

Kernel Linked Lists More elegant than arrays, but takes some getting used to… 18

Kernel Linked Lists n Linux kernel provides generic doubly- and singly-linked list implementations for

Kernel Linked Lists n Linux kernel provides generic doubly- and singly-linked list implementations for use in kernel code q n n Take advantage of it! Likely to prove useful for implementing queue processing system in project 2 Found in <linux source>/include/linux/list. h

Kernel Linked Lists Pros n q q q Safer and saves time over implementing

Kernel Linked Lists Pros n q q q Safer and saves time over implementing them yourself Handy functions already defined for your use Can dynamically represent a FIFO Cons n q Pointers can be a bit tricky

struct list_head{ struct list_head *next, *prev; }; • • • A kernel linked list

struct list_head{ struct list_head *next, *prev; }; • • • A kernel linked list consists of only a next and prev pointer to a list_head structure. Start with an empty list_head Next connect to other list_heads embedded into your structures

struct list_head *Picture taken from Linux Device Drivers, 3 ed. 22

struct list_head *Picture taken from Linux Device Drivers, 3 ed. 22

Initialize a list_head /* Declare the start of the list*/ struct list_head todo_list; /*

Initialize a list_head /* Declare the start of the list*/ struct list_head todo_list; /* Initialize the list to empty */ INIT_LIST_HEAD(&todo_list); n n Declares and initializes an empty linked list called todo_list Note the INIT_LIST_HEAD function takes a pointer 23

Embedding a list_head into your own structs struct tasks 1{ struct list_head list; int

Embedding a list_head into your own structs struct tasks 1{ struct list_head list; int task_id; void *task_data; }; n We can define a struct that holds more valuable information with an empty list_head struct inside n How do we add this struct to the main list? 24

Adding an element to the list /* Declare a struct * with an embedded

Adding an element to the list /* Declare a struct * with an embedded list_head */ struct tasks 1 *my_task; /* Kmalloc and fill in my_task with data you care about here… */ /* Add the my_task struct to the last element in the list using list_add_tail() */ list_add_tail(&my_task->list, &todo_list); n List_add_tail() can be used to implement a FIFO 25

Other Linked List Functions n Deleting items from the list q q n list_del(struct

Other Linked List Functions n Deleting items from the list q q n list_del(struct list_head *entry); list_del_init(struct list_head *entry); Go from list_head to surrounding struct q list_entry(struct list_head *ptr, type_of_struct, field_name); 26

Other Linked List Functions n Iterate through a linked list q n list_for_each(struct list_head

Other Linked List Functions n Iterate through a linked list q n list_for_each(struct list_head *cursor, struct list_head *list) For full definitions and examples, check out page 295 at http: //lwn. net/images/pdf/LDD 3/ch 11. pdf 27

Elevator Scheduling 28

Elevator Scheduling 28

General Advise n Just make elevator work first q n Use a very simple

General Advise n Just make elevator work first q n Use a very simple algorithm Optimize if there is time 29

FIFO n Method: q n Pros: q q q n Service requests in order

FIFO n Method: q n Pros: q q q n Service requests in order they arrive + No computational time expended to choose requests + Implementation: As easy as it gets + Fair: Every requests gets a turn Cons: q - Terrible for random requests! n q Elevator may backtrack back and forth several times in processing requests - Low throughput potential

Shortest Seek Time First n Method: q n Pros: q q q n Service

Shortest Seek Time First n Method: q n Pros: q q q n Service requests near elevator first + Very low computational time expended + Implementation: Fairly easy + Throughput: Fairly high – may minimize seek time Cons: q q - Unfair: May starve distant requests - May ignore distant clusters of requests

SCAN n Method: q n Pros: q q n Service requests in one direction,

SCAN n Method: q n Pros: q q n Service requests in one direction, then go backwards + Very low computational time expended + Implementation: Fairly easy (go up, go down, go up) + Throughput: somewhat high + Fair: No starvation Cons: q - May take up to two elevator trips to collect a set of requests (up, down)

LOOK n Method: q q n Pros: q q n Improvement on SCAN –

LOOK n Method: q q n Pros: q q n Improvement on SCAN – same method (almost) Uses information of request locations to determine where to stop going in a certain direction. + Low computational time expended + Implementation: Moderate (set upper bound, go up, set lower bound, go down) + Throughput: somewhat high + Fair: No starvation Cons: q - May miss a new request at outer boundary just as direction change occurs

Hybrid n n Combine methods, come up with something new Up to your creativity

Hybrid n n Combine methods, come up with something new Up to your creativity 34

Project Demos and Deliverables 35

Project Demos and Deliverables 35

Basic Information n Project 2 is due on October 26 th q n n

Basic Information n Project 2 is due on October 26 th q n n Due at demo time Please sign up for a time to demo your elevator project If you wish to use slack days, make an appointment with me on the day you wish to turn in your project 36

Project Deliverables n Before demo, please compress and send me the following q q

Project Deliverables n Before demo, please compress and send me the following q q q README Project report Part 1 – source and Makefile Part 2 – source and Makefile Part 3 – source and Makefile n Just send me files you have added (for example, you don’t need to send me the syscall_table_32. S file) 37

Demo n n Will only have time to demo Part 3 – elevator Please

Demo n n Will only have time to demo Part 3 – elevator Please look at grading sheet to understand what I will be looking for 38

Getting Help n I will be holding extra help sessions again next week in

Getting Help n I will be holding extra help sessions again next week in LOV 16 q q n Tuesday: 5: 15 pm-6: 30 pm Thursday: 2: 00 pm-3: 15 pm Regular office hours q q Alejandro -- M W 9: 00 am-10: 00 am and by appointment Sarah – W 12: 30 pm-1: 30 pm, F 3: 30 pm-4: 30 pm and by appointment 39

Next Friday n We are ahead in recitation lectures, so next recitation will be

Next Friday n We are ahead in recitation lectures, so next recitation will be my office hours q Replacing the 3: 30 pm-4: 30 pm hours on October 22 nd 40

Test Elevator Driver n Test elevator driver will be posted before the end of

Test Elevator Driver n Test elevator driver will be posted before the end of the weekend q n Will randomly test system calls Make sure system calls are registered to the following numbers in syscall_table_32. S: q q q start_elevator issue_request stop_elevator 337 338 339 41

Any Questions? 42

Any Questions? 42