LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-12-2015, 09:04 PM   #1
bunhead2015
LQ Newbie
 
Registered: Mar 2015
Posts: 2

Rep: Reputation: Disabled
What is context switching


I'm currently reading Brian Wards book: How Linux Works: What Every Superuser Should Know 2nd edition and I'm confused about step 3 in the context of the other steps:
1. The CPU (the actual hardware) interrupts the current process based on an internal timer, switches into kernel mode, and hands control back to the kernel.

2. The kernel records the current state of the CPU and memory, which will be essential to resuming the process that was just interrupted.

3. The kernel performs any tasks that might have come up during the preceding time slice (such as collecting data from input and output, or I/O, operations).

4. The kernel is now ready to let another process run. The kernel analyzes the list of processes that are ready to run and chooses one.

5. The kernel prepares the memory for this new process, and then prepares the CPU.

6. The kernel tells the CPU how long the time slice for the new process will last.

7. The kernel switches the CPU into user mode and hands control of the CPU to the process.

What does he mean preceding time slice as surely the tasks have been completed during the time slice in steps 1-2?
 
Old 03-12-2015, 09:28 PM   #2
T3RM1NVT0R
Senior Member
 
Registered: Dec 2010
Location: Internet
Distribution: Linux Mint, SLES, CentOS, Red Hat
Posts: 2,385

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
The number of processes that can run in a single CPU at any given point of time is 1. For example if you have got a dual core processor which basically means you have got 2 CPUs on this system 2 processes can be processed by the CPU at any given point of time.

You will see many processes on the system but that doesn't mean that all of them are using the CPU at the same time only 1 or two processes (depending on the number of CPUs / cores you have) will be in running state and other will be either sleeping or waiting or in stopped state.

Whenever a process request for CPU it is kernel's responsibility to facilitate that. So kernel will set the time frame for how long process can use the CPU, how much memory is required etc. Once that time frame is over that process will be kicked out of the CPU but that doesn't mean that process completed all the tasks, it will again get in queue (depends on how heavily CPU is being used) if it need to perform more tasks.

Context switching basically means switching of processes / thread.
 
Old 03-13-2015, 05:40 AM   #3
bunhead2015
LQ Newbie
 
Registered: Mar 2015
Posts: 2

Original Poster
Rep: Reputation: Disabled
context switch

Hello T3RM1NVT0R,
But am I missing something: What is step 3 saying?

Last edited by bunhead2015; 03-13-2015 at 05:47 AM. Reason: clarity
 
Old 03-13-2015, 10:28 AM   #4
T3RM1NVT0R
Senior Member
 
Registered: Dec 2010
Location: Internet
Distribution: Linux Mint, SLES, CentOS, Red Hat
Posts: 2,385

Rep: Reputation: 477Reputation: 477Reputation: 477Reputation: 477Reputation: 477
Here is the explanation:

Quote:
1. The CPU (the actual hardware) interrupts the current process based on an internal timer, switches into kernel mode, and hands control back to the kernel.
If a process is already running in the CPU it get interrupted based on internal timer as they say, once that is done kernel gets the control back and is ready to fire a new request to the CPU. As they say kernel is the heart of the system any request to get to the physical hardware will be handled by the kernel. So when you type or even move your mouse you are interrupting any running process as the system has to immediately react to your request to type or move the cursor.

You might have noticed sometime that when you type the letters doesn't popup immediately it takes sometime to display on the screen, that is because CPU is busy processing other processes which cannot be interrupted immediately.

Quote:
2. The kernel records the current state of the CPU and memory, which will be essential to resuming the process that was just interrupted.
Again I will take the same example what I have taken for point 1. Suppose you have some application running in the background but suddenly you start moving your mouse or start typing then CPU has to give priority to that. Before it interrupts the running process it will save the stuff related to previous application in memory basically the state of CPU and memory which was when the process was actively running.

Quote:
3. The kernel performs any tasks that might have come up during the preceding time slice (such as collecting data from input and output, or I/O, operations).
Here when it says preceding time slice we are talking about the time duration of the previous process, for example if previous process has requested for some I/O operation then kernel will finish it off, save the current state of CPU and memory for that process and then interrupt the process.

Quote:
4. The kernel is now ready to let another process run. The kernel analyzes the list of processes that are ready to run and chooses one.

5. The kernel prepares the memory for this new process, and then prepares the CPU.

6. The kernel tells the CPU how long the time slice for the new process will last.

7. The kernel switches the CPU into user mode and hands control of the CPU to the process.
Steps 4-7 are pretty much self explanatory and is about the same cycle.
 
1 members found this post helpful.
Old 03-13-2015, 10:50 AM   #5
johnsfine
LQ Guru
 
Registered: Dec 2007
Distribution: Centos
Posts: 5,286

Rep: Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197Reputation: 1197
I believe step 3 refers to kernel work that is either delayed from hardware interrupts or not driven by hardware interrupts, so it should occur at the end of a user time slice.

I don't know enough Linux kernel internals to know whether any actual work is managed that way.

Certainly some periodic kernel work can be triggered by the same clock as ended the time slice (rather than having its own hardware interrupt). But I would have expected that kind of thing to be less integrated with the context switching code than the above description implies.
 
Old 06-05-2015, 01:22 PM   #6
a1danel
LQ Newbie
 
Registered: Apr 2007
Location: California
Distribution: Debian/Redhat/Fedora
Posts: 18

Rep: Reputation: 0
Is there anyway to calculate what a theoretical maximum limit of (context switching/per second) for a CPU would be?
 
Old 06-05-2015, 02:34 PM   #7
joec@home
Member
 
Registered: Sep 2009
Location: Galveston Tx
Posts: 291

Rep: Reputation: 70
Quote:
Originally Posted by a1danel View Post
Is there anyway to calculate what a theoretical maximum limit of (context switching/per second) for a CPU would be?
Yes and no. "No" being that different commands take different amounts of time for a CPU to complete different commands. I.E. a multiplication takes something like 8 clock ticks where an increment command takes a single clock tick. However "Yes" in the sense of there being a completely different way of thinking about it. Look at the commands "top" and "sar", specifically CPU load averages. Top and sar will show the virtual load average, which you divide by the number of CPU cores for the true load average. So a load of 0.5 on 2 CPU's would really be a true load of 0.25. So a true load of 1.0 would be that the CPU is running optimal performance, anything less then the CPU is relatively under worked, the system is rather idle. To be "By The Book" an administrator never wants to see a load over a 1.0, but I have seen systems run fairly smoothly even up to a 4.0. At an 8.0 you start seeing severe performance issues and might crash. On the other hand I have seen some really poorly managed systems run as high as a load of 32.0 and somehow it was still online and I was able to ssh into it. Granted it had taken about 10 minutes just for ssh to log in and another 15 minutes just for it to echo back that I had typed in reboot, but somehow it was still working and it actually responded to the reboot command after about another 20 minutes after it finally echoed back that I even typed in reboot. The joys of remote administration, but any case understanding load and true load of the system (CPU, I/O, DISK I/O all have load averages) is the more common defacto of how to think about the question you are asking.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
how to increase the speed of context switching in linux zerop Linux - Kernel 1 07-27-2014 11:42 PM
Switching to kernel context in a multiple-CPU system kmccall Linux - Kernel 0 06-21-2010 02:55 PM
Is this context switching rate a problem? carlosreimer Red Hat 0 09-02-2005 01:36 PM
KDE 3.3 Bad Monitor Switching on Desktop Switching Inchoate Linux - Software 1 05-25-2005 02:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 08:58 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration