Re: userspace irq balancer

From: David S. Miller (davem@redhat.com)
Date: Mon May 26 2003 - 19:20:44 EST


From: Andrea Arcangeli <andrea@xxxxxxx>
Date: Tue, 27 May 2003 02:06:39 +0200

On Mon, May 26, 2003 at 04:43:00PM -0700, David S. Miller wrote:
> softirq load? How much weight will softirq load get compared to

normally the softirq runs after the hardirq (commoncase) and you want to
run those softirq computations on the idle cpu too (i.e. no userspace
running so offload hardirq and in turn softqirq to it) No difference.
softirq is like hardirq just longer and with hardirq enabled. One more
reason to offload it to an idle cpu.

One hardirq can equate to thousands of packets worth of softirq load,
especially with NAPI. And you cannot even know what this ratio is
(packets processed per hardware IRQ load). It can be anywhere from
1 to 1000. And you absolutely do not want to behave identically
for all such values.

How can you even claim to be taking this into account in a logical
manner if you cannot even tell me how you will determine how much
softirq load is created by a hardware irq?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/