Tagged Questions
0
votes
0answers
43 views
interrupt service routine crashes on iret
I am working on an interrupt service routine for a 32 bit protected mode kernel I was writing (with the help from GPL codes from the net; from GazOS). I am working on the IDT and enabling of irq 1 to ...
6
votes
1answer
195 views
C - Write to physical memory from kernel module
In the kernel module, I need to handle the interrupt by writing a "zero" to address of physical memory.
First of all, I should allocate a memory by some function like "mmap", but for kernel module; ...
5
votes
4answers
226 views
where is hardware timer interrupt?
this is Exceptions and Interrupts table(which I understand as IDT)
from the "Intel Architecture Software Developer Manual"
where is Timer interrupt which makes context switching possible??
(for ...
0
votes
1answer
60 views
Overriden timer interrupt not working properly
I am working on a small kernel as a project for my University.
I have overridden (not sure if that's the correct expression) a timer interrupt routine.
It works well until the first context ...
1
vote
0answers
133 views
Custom keyboard function key in Linux
i have built a small COM Port device which on every keypress will generate a a key output in the port.
key-1 = 0x31
key-2 = 0x31
FunctionKey1 = 0x90
FunctionKey2 = 0x91
so i am trying to update the ...
0
votes
1answer
67 views
Is it possible to invoke hardware interrupts from software?
In C, system calls are invoked with asm("int $0x80"). Is it possible to invoke the IRQ registered with request_irq directly from software?
How?
PS: apic->send_IPI_self looks promising. Haven't yet ...
-2
votes
1answer
22 views
Do you think data structure of tasklet_head is wired?
I am reading source code of tasklet and try to understand it.
I think data structure of tasklet_head is wired, do you think so.
Why data type of the second element is struct tasklet_struct ** ,it ...
1
vote
0answers
273 views
Linux interrupt handling: in SA_SHIRQ or IRQF_SHARED flag who will decide priority(user/kernel)?
in request_irq() suppose I am sharing one irq no with two handler function, so who will decide which handler should execute first and which should second? whether we can change the priority of handler ...
0
votes
3answers
218 views
Stack for iret and int instruction
An interrupt causes the CPU to save the EFLAGS, CS and IP registers onto the "stack" and the iret instruction pops them off it. Where is this stack located? How does the CPU know about it (I assume ...
2
votes
1answer
161 views
What happens when a thread makes kernel disable the interrupts and then that thread goes to sleep
I have this kernel code where I disable the interrupt to make this lock acquire operation atomic, but if u see the last else condition i.e. when lock is not available thread goes to sleep and ...
2
votes
3answers
532 views
What happens to preempted interrupt handler?
I could not find a proper answer for the following questions even in some well written kernel books:
They are saying that an ISR can't sleep because its not possible to reschedule an ISR as it is ...
0
votes
2answers
190 views
Waiting for vertical blank in kernel mode?
I'm writing a driver that needs synchronization with vertical blank interrupt to send some data down the USB pipe.
In user-mode there are Direct X functions available for this like ...
2
votes
3answers
98 views
Something about interrupts of the same source
It is said that
When an interrupt is sent by the PIC, the PIC will not send another
interrupt from that same source until it gets acknowledged through an
I/O port. This is because interrupt ...
1
vote
1answer
139 views
Can a masked interrupt be received after the mask canceled?
If an interrupt is masked by "cli" instruction, can the same interrupt (not interrupts of the same source)be received by the cpu after a "sti" instruction?
0
votes
1answer
71 views
How could one interrupt handler go until the same source is free?
Note that a single interrupt source (timer, keyboard, etc.)
will not signal a new interrupt to the processor until
the processor has indicated that handling of the previous interrupt from that ...
4
votes
1answer
160 views
How can I get know when I plug my headphones into the 3.5 interface?
I want to write a small program in C: When I plug my headphones in my notebook, it should turn the volume lower. Then, when I remove headphone from my notebook, it should turn the volume back up.
I ...
3
votes
1answer
112 views
Less number of timer interrupts when some user process is running
In a node we saw that the time is always drifting and ntp jitter is very high.
When we checked the number of interrupts through vmstat in the host and it was around 40-50 interrupts, which should be ...
0
votes
1answer
213 views
what is the difference between enabling interrupts and restoring interrupts?
I have big confusion on this. Can any one explain me the difference between this??
When do we use Enable and when do we use restore. Both mean the same or are they different???
I know enable is used ...
0
votes
1answer
268 views
What happens if a interrupt handler starts spinning?
I am following the Linux Device Drivers. When it introduces spinlocks, it gives the following example:
Your driver is executing and has just taken out a lock that controls access to its device. ...
1
vote
1answer
385 views
x86: Interrupt handler loop
I'm trying to handle Kernel interrupts via the IDT.
I work on Intel x86 under Linux.
I have set my IDT and my interrupts entries and I launched some tests to view my interrupts handlers.
When I try ...
0
votes
1answer
166 views
Access graphic card clock programmatically
Is it possible to use graphic card clock from a windows application? More specifically - is it possible to somehow make graphic card to send interrupts on clock events (tick?) and hook to it from a ...
1
vote
2answers
618 views
Implementation of Semaphores in kernel..?
I am reading "Operating System Concepts" to understand Semaphores.
An excerpt from the book:
"The critical aspect of semaphores is that they be executed atomically- We
must guarantee that no two ...
1
vote
2answers
807 views
Semaphores for process synchronization
I have never understood semaphores well enough. Every time, I venture to understand them, something pops up, which I don't understand.
Here is my question at this moment:
I read in "Operating System ...
3
votes
3answers
1k views
Difference between request_irq and __interrupt
From what I read both are used to register interrupt handlers. I saw lots of request_irq calls in kernel code but not even one __interrupt call. Is __interrupt some way to register a handler from user ...
3
votes
2answers
2k views
Can an interrupt handler be preempted?
I know that linux does nested interrupts where one interrupt can "preempt" another interrupt, but what about with other tasks.
I am just trying to understand how linux handles interrupts. Can they be ...
1
vote
1answer
205 views
How to implement/set a data breakpoint?
Requirements:
I need to generate an interrupt, when a memory location changes or is written to. From an ISR, I can trigger a blue screen which gives me a nice stack trace with method names.
...
5
votes
2answers
536 views
What is Interrupt Threading?
(NB: This is not about interrupting Java/.NET threads, this is about kernel-mode interrupts.)
Hi,
Wikipedia has this to say about Interrupt Threads in the Interrupt handler article:
Interrupt ...
3
votes
2answers
1k views
Windows processes in kernel vs system
I have a few questions related to Windows processes in kernel and usermode.
If I have a hello world application, and a hello world driver that exposes a new system call, foo(), I am curious about ...