The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
47 views

How to troubleshoot high kernel time (high network usage; high interrupts)

I've noticed that I have high kernel time when doing a lot of network traffic in Linux. I also noticed that 45% of my CPU is spent doing interrupts. How can I further troubleshoot this?
1
vote
1answer
40 views

Are threads which are executing blocking system calls awoken by interrupts?

I've been reading a bit about threads and interrupts. And there is a sections which says that parallel programing using threads is simpler because we don't have to worry about interrupts. However, ...
1
vote
0answers
67 views

Making a IRQ SMP Affinity change permanent

I have to change the smp_affinity of a interrupt permanently. The following code needs to be executed when the server reboots: echo "1" > /proc/irq/152/smp_affinity_list echo "2" > ...
1
vote
0answers
58 views

Further clarification as to whether interuppts are disabled in top-half handler or not [closed]

Recently I came across a note in an online post that states the following: In modern kernels, most of the differences between fast and slow interrupts have disappeared. There remains only one: ...
4
votes
2answers
1k views

How does the Linux kernel handle shared IRQs?

According to what I've read so far, "when the kernel receives an interrupt, all the registered handlers are invoked." I understand that the registered handlers for each IRQ can be viewed via ...
1
vote
0answers
102 views

Which softirq will execute if interrupt is generated on same line: preempted or new softirq?

Following is the sequence of events: interrupt generated at line 1. line 1 disable. ISR executed. Set sofirq bit 1 line 1 enable. softirq executes and suddenly interrupts come at line 1. softirq ...
3
votes
1answer
663 views

What does Linux's “nointremap” option do?

Ubuntu 12.10 alpha 2 works perfectly on my new 11" 2012 Macbook Air, but only when I boot with the "nointremap" option. Supposedly this is not good to use as a permanent solution. What exactly does ...
2
votes
0answers
235 views

“Remote function call interrupts” (CAL in /proc interrupts). What is it?

I'm running a test program which generates a large number of threads and asynchronous I/O. I'm seeing very high counts of these interrupts in /proc/interrupts, the program cannot scale beyond a ...
0
votes
0answers
18 views

Can an interupt be processed by software, without hardware support? [duplicate]

Possible Duplicate: Can an interrupt be soley processed by software without harware support? Can an interrupt be processed by software without the need for hardware suppport? Assume a x86 ...
1
vote
1answer
133 views

Can an interupt be processed by software, without hardware support? [closed]

Can an interrupt be processed by software without the need for hardware suppport? Assume an x86 architecture.
5
votes
3answers
1k views

Ctrl + c will not kill process

I have looked for answers and so far have found nothing to answer my question. I am currently logging in to my Ubuntu server and upon running a process I can not run any of the interrupts on it. Here ...
7
votes
1answer
321 views

Interrupt sequence CTRL+C does not work for user

In any terminal operating under GNOME, if I press Ctrl+C, I only see a question mark. Same goes for Ctrl+Z. The output of stty -a | grep intr is: intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ...
5
votes
1answer
2k views

What are software and hardware interrupts, and how are they processed?

I am not sure if I understand the concept of hardware and software interrupts. If I understand correctly, the purpose of a hardware interrupt is to get some attention of the CPU, part of implementing ...
8
votes
3answers
2k views

What is the relationship between system calls, message passing, and interrupts?

I am reading the Wikipedia article for process management. My focus is on Linux. I cannot figure out the relation and differences between system call, message passing and interrupt, in their concepts ...
3
votes
2answers
1k views

change interrupt smp_affinity

As you can see below, nvidia is sharing the intrerrupt and the interrupt is using only CPU0, how can I change the interrupt for nvidia, and how can I make it use both CPU's ? Here is an article ...

1 2
15 30 50 per page