diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2013-01-25 18:59:14 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2013-01-25 18:59:14 +0000 |
commit | cdbdf5768f979749cd9654c8b0b81e69601f0a5f (patch) | |
tree | 5e79a13e87f7fb2a9409ed5ec1a517cff351adae /sys-apps/irqbalance/files | |
parent | Version bump; tests are known to fail, but the older version no longer builds... (diff) | |
download | gentoo-2-cdbdf5768f979749cd9654c8b0b81e69601f0a5f.tar.gz gentoo-2-cdbdf5768f979749cd9654c8b0b81e69601f0a5f.tar.bz2 gentoo-2-cdbdf5768f979749cd9654c8b0b81e69601f0a5f.zip |
Check that we can actually start up irqbalance based on kernel configuration. Patches and improvements from Kerin Millar <kerframil@gmail.com>
(Portage version: 2.2.0_alpha159/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-apps/irqbalance/files')
-rw-r--r-- | sys-apps/irqbalance/files/irqbalance.init.3 | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-apps/irqbalance/files/irqbalance.init.3 b/sys-apps/irqbalance/files/irqbalance.init.3 new file mode 100644 index 000000000000..551e1c85ea92 --- /dev/null +++ b/sys-apps/irqbalance/files/irqbalance.init.3 @@ -0,0 +1,28 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/sys-apps/irqbalance/files/irqbalance.init.3,v 1.1 2013/01/25 18:59:14 cardoe Exp $ + +depend() { + need localmount + after bootmisc +} + +command="/usr/sbin/irqbalance" +command_args="${IRQBALANCE_OPTS}" + +check_sysfs() { + if grep -q MSI /proc/interrupts 2>/dev/null && \ + test -z "$(find /sys/devices -type d -name msi_irqs 2>/dev/null)"; then + eerror "MSI interrupts found in /proc/interrupts but none found in sysfs." + eerror "You need to update your kernel." + return 1 + fi +} + +start() { + check_sysfs || return 1 + ebegin "Starting irqbalance" + start-stop-daemon --exec ${command} --start -- ${IRQBALANCE_OPTS} + eend $? +} |