Bug 397901 - IRQBALANCE fails everytime a reboot occurs in Fedora 8
Summary: IRQBALANCE fails everytime a reboot occurs in Fedora 8
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: irqbalance
Version: 8
Hardware: i386
OS: Linux
low
medium
Target Milestone: ---
Assignee: Neil Horman
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2007-11-24 16:39 UTC by Scott Griffin
Modified: 2007-12-02 04:34 UTC (History)
1 user (show)

Fixed In Version: 0.55-7.fc8
Clone Of:
Environment:
Last Closed: 2007-11-29 01:46:54 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Scott Griffin 2007-11-24 16:39:26 UTC
Description of problem:
I am finding the logs on irqbalance however everytime a reboot is initiated it
receives a 'failed' message shutting down.

Version-Release number of selected component (if applicable):
Fedora 8 

How reproducible:
Install Fedora 8 from live CD, copy the image to hard-drive and reboot. Even
after performing updates irqbalance still receives a 'failed' status on shutdown
or reboot.

Steps to Reproduce:
1. Install Fedora 8 Live disk
2. Copy to hard-drive
3. Any time a reboot occurs irqbalance fails on shutting down or rebooting.
  
Actual results:


Expected results:
Irqbalance should come down cleanly with failing.

Additional info:
Please email me at grifs71 - Scott Griffin, I am still investigating
the root cause and logs. I have installed this release on several machines and
received the same results.

Comment 1 Stephen J Alexander 2007-11-26 16:33:35 UTC
This problem also occurs on x86_64 with core2 duo.

Using strace it appears the irqbalance daemon exits after the first 10 second
sample period and irq re-balance.  The last system calls are:
open("/proc/irq/12/smp_affinity", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3
fstat(3, {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) =
0x2aaaaaaae000
write(3, "00000001", 8)                 = 8
close(3)                                = 0
munmap(0x2aaaaaaae000, 4096)            = 0
write(1, "IRQ delta is 16077 \n", 20)   = 20
exit_group(0)                           = ?

irqbalance behaves as if the "--oneshot" parameter is set (it is not, tested).
This of course causes the daemon script * lock file problems.


Comment 2 Stephen J Alexander 2007-11-26 17:42:14 UTC
I've just read the source code and the cause is now obvious.
        /* On single core UP systems irqbalance obviously has no work to do */
        if (core_count<2) 
                exit(EXIT_SUCCESS);
        /* On dual core/hyperthreading shared cache systems just do a one shot
setup */
        if (cache_domain_count==1)
                one_shot_mode = 1;

If there is a single cpu irqbalance exits immediately.
If there is a consolidated cache model, then irqbalance performs a "one shot"
re-balance (as on my core2 duo).

Then the daemon process exits, leaving the lock file.
==
The daemon exits as it has no practical work to preform, however the
init.d/irqbalance script has no means of distinguishing the 'clean exit' from
other failure conditions.



Comment 3 Neil Horman 2007-11-26 18:23:24 UTC
fixed in 0.55-7.fc8.  Thanks!

Comment 4 Fedora Update System 2007-11-29 01:46:53 UTC
irqbalance-0.55-7.fc8 has been pushed to the Fedora 8 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 5 Scott Griffin 2007-12-02 04:34:52 UTC
I have updated my Fedora 8 machines this update appears to have resolved this issue.

Thank you,
Scott Griffin


[scottg@FEDORA ~]$ rpm -q irqbalance
irqbalance-0.55-7.fc8



Note You need to log in before you can comment on or make changes to this bug.