Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 154889 Details for
Bug 240392
irq smp_affinity should be all cpus by default
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
irqbindall init script
irqbindall (text/plain), 799 bytes, created by
IBM Bug Proxy
on 2007-05-17 01:27:41 UTC
(
hide
)
Description:
irqbindall init script
Filename:
MIME Type:
Creator:
IBM Bug Proxy
Created:
2007-05-17 01:27:41 UTC
Size:
799 bytes
patch
obsolete
>#!/bin/bash ># chkconfig: 2345 80 80 ># description: Sets irq affinity to all cpus > >. /etc/init.d/functions > >prog=irqbindall > >start() { > cpumask="fffffff" > > #disable irq balancer > echo "Stopping irq balancer" > /etc/init.d/irqbalance stop > /dev/null > > echo -n "Binding interrupts to cpu_mask: $cpumask... " > for i in `ls /proc/irq/ | grep -v cpu_mask` ; > do > echo "$cpumask" > /proc/irq/$i/smp_affinity > done > echo "done." > return 0 >} > >rhstatus() { > status irqbindall >} > > >case "$1" in > start) > start > ;; > stop) > /bin/true > ;; > restart) > start > ;; > reload) > start > ;; > condrestart) > start > ;; > status) > rhstatus > ;; > *) > echo $"Usage: $prog {start|stop|status|restart|reload|condrestart}" > exit 1 >esac > >exit $? >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 240392
:
154889
|
155146
|
155155
|
155291
|
155390