The preemption tag has no wiki summary.
0
votes
0answers
37 views
BUG: scheduling while atomic in tcp_recvmsg
I am trying to use a kernel socket to send/receive data with a server over TCP. I have used the following APIs for the purpose - sock_create, sock_sendmsg, sock_recvmsg and sock_release. As part of ...
2
votes
0answers
276 views
Understanding link between CONFIG_SMP, Spinlocks and CONFIG_PREEMPT in latest (3.0.0 and above) Linux kernel
To give you full context my discussion begun with an observation that I am running a SMP linux (3.0.1-rt11) on ARM cortex A8 based SoC which is a uniprocessor. I was curious to know if there will be ...
1
vote
2answers
184 views
Sleeping in the kernel using set_current_state
I've been reading http://www.linuxjournal.com/article/8144 and thinking about the following situation:
4253 /* Wait for kthread_stop */
4254 set_current_state(TASK_INTERRUPTIBLE);
4255 while ...
0
votes
1answer
38 views
Detailed multitasking monitoring
I'm trying to put together a model of a computer and run some simulations on it (part of a school assignment). It's a very simple model - a CPU, a disk and a process generator that generates user ...
0
votes
1answer
115 views
Why Rails applications run Garbage Collector at all?
I was pretty sure, that all Rack application servers (I had some experience with Unicorn and Passenger) were creating single process for every worker when they were created, and its state was ...
0
votes
1answer
87 views
Threaded program Vs Goto
I have a system which consists of multiple threads, lets say process A, B and C and these processes are completely written in SDL which eventually gets converted to C language after compilation.
I ...
0
votes
1answer
118 views
Suspending hadoop nodes temporarily - background hadoop cluster
I wonder if it is possible to install a "background" hadoop cluster. I mean, after all it is meant to be able to deal with nodes being unavailable or slow sometimes.
So assuming some university has a ...
4
votes
2answers
146 views
How does preemption on x86 architecture work?
I'm struggling to understand one thing about preemption. Citing Wikipedia:
In computing, preemption (more correctly pre-emption) is the act of temporarily interrupting a task being carried out ...
1
vote
3answers
87 views
attach preempt_notifier to user process in linux
I am needing to identify whether a user process was ever preempted somehow, I understand we have hooks in preempt.h and sched.c which allow us to define preempt_notifiers which can in turn call ...
1
vote
0answers
216 views
Preventing process context switching on Android
Now this may seem a bit extreme. I am curious if there would be a way to prevent an application's process from being pre-empted by the Android OS. I have time critical testing in C++ which can varying ...
0
votes
1answer
204 views
Process non-preemptable on Linux (2.6.32)
I'm trying to make a process non preemptable. I've changed the scheduler policy to SCHED_FIFO and set the rtprio to 99. As soon as the process starts, in absence of IO interrupts, do I have the ...
1
vote
2answers
1k views
SCHED_FIFO thread is preempted by SCHED_OTHER thread in Linux
I have written test program to test out SCHED_FIFO. I have learnt that SCHED_FIFO cannot be preempted by SCHED_OTHER threads. But I couldn't explain the results obtained when same program is run ...
0
votes
0answers
207 views
(linux) Kernel with Real-Time Preemption… not found
I am trying to patch my linux kernel with RT-Preempt for Jack Audio and every time after I compile and install the new kernel the realtimeconfigquickscan tool gives me this message:
Kernel with ...
2
votes
1answer
563 views
How can I avoid preemption of my thread in user mode
I have a simple chunk of deterministic work that only takes thirteen machine instructions to complete. Because the first instruction takes a homemade semaphore (spinlock) and the last instruction ...
3
votes
1answer
2k views
Disadvantage of preempt_rt
the target hardware platform has limited horsepower, and/or you want
the real-time job to put the smallest possible overhead on your
system. This is where dual kernels are usually better than a ...
1
vote
2answers
709 views
Are there any difference between “kernel preemption” and “interrupt”?
I just reading an article which says:
Reasons to control the interrupt system generally boil down to needing to provide synchronization. By disabling interrupts, you can guarantee that an ...
1
vote
3answers
239 views
basic multithreading
I have the following Interview question:
class someClass
{
int sum=0;
public void foo()
{
for(int i=0; i<100; i++)
{
sum++
}
}
}
There are two ...
4
votes
2answers
314 views
C code - memory access / preemption
I have written a piece of code wherein a data:
unsigned char buf[4096]; // data in chunks of size 4k
unsigned counter[256];
I am adding up the i/p data for every 3 contiguous bytes and storing the ...
2
votes
1answer
2k views
Linux Kernel Preemption during spin_lock and mutex_lock
When a process in the kernel space is holding a spin_lock, the process cannot be preempted due to any of the following conditions :
When the time-slice of the process gets exhausted
When a high ...
1
vote
2answers
1k views
is linux kernel preemptive or not? [closed]
Is the Linux kernel preemptive or not?
There is a big difference between Understanding the Linux Kernel 2nd edition and 3rd edition. In the 2nd it is written that the Linux kernel is not preemptive ...
2
votes
3answers
600 views
How to limit the execution time of a function in C/POSIX?
Similar to this question, I'd like to limit the execution time of a function--preferably with microsecond accuracy--in C. I imagine that C++ exceptions could be used to achieve a result similar to ...
1
vote
1answer
353 views
How to set a time limit on a function with a secure area
I'm trying to develop a program to time limit the execution of a function. In the code below I have a function named Inc which does a lot of iterations (simulated by the infinite loop). The first part ...
3
votes
4answers
2k views
How does a VxWorks scheduler get executed?
Would like to know how the scheduler gets called so that it can switch tasks. As in even if its preemptive scheduling or round robin scheduling - the scheduler should come in to picture to do any kind ...
2
votes
2answers
241 views
Context switches in control paths of a non-preemptive kernel (Linux)
The Linux kernel is non-preemptive, but I just read that there could be context-switches in different control paths. Doesn't that contradict the non-preemptive nature on the Linux kernel?
10
votes
4answers
10k views
What is preemption / What is a preemtible kernel? What is it good for?
Explained in your own words, what is preemption and what does it mean to a (linux) kernel?
What are advantages and disadvantages in having a preemptible kernel?