commit irqbalance for openSUSE:Factory
Hello community, here is the log from the commit of package irqbalance for openSUSE:Factory checked in at 2016-02-28 02:27:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/irqbalance (Old) and /work/SRC/openSUSE:Factory/.irqbalance.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "irqbalance" Changes: -------- --- /work/SRC/openSUSE:Factory/irqbalance/irqbalance.changes 2016-02-03 10:18:46.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.irqbalance.new/irqbalance.changes 2016-02-28 02:27:15.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Feb 23 10:11:19 UTC 2016 - schwab@suse.de + +- fix-aarch64-support.patch: Fix AArch64 support + +------------------------------------------------------------------- New: ---- fix-aarch64-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ irqbalance.spec ++++++ --- /var/tmp/diff_new_pack.YfkSFp/_old 2016-02-28 02:27:16.000000000 +0100 +++ /var/tmp/diff_new_pack.YfkSFp/_new 2016-02-28 02:27:16.000000000 +0100 @@ -25,6 +25,7 @@ Url: https://github.com/Irqbalance/irqbalance Source: https://github.com/Irqbalance/irqbalance/archive/v%{version}.tar.gz Source3: sysconfig.irqbalance +Patch1: fix-aarch64-support.patch BuildRequires: libcap-ng-devel BuildRequires: libtool BuildRequires: systemd-rpm-macros @@ -43,6 +44,7 @@ %prep %setup -q +%patch1 -p1 %build NOCONFIGURE=1 ./autogen.sh ++++++ fix-aarch64-support.patch ++++++
From 1dccd034a90b2f0221423632de65cbf84d05ebfb Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz <mjuszkiewicz@redhat.com> Date: Tue, 15 Dec 2015 09:09:09 +0100 Subject: [PATCH] Fix AArch64 support
Signed-off-by: Marcin Juszkiewicz <mjuszkiewicz@redhat.com> Signed-off-by: PJ Waskiewicz <pjwaskiewicz@gmail.com> --- procinterrupts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/procinterrupts.c b/procinterrupts.c index 63101d6..b70bfc2 100644 --- a/procinterrupts.c +++ b/procinterrupts.c @@ -80,7 +80,7 @@ static int check_platform_device(char *name, struct irq_info *info) rc = 0; goto out; } else if (!strncmp(ent->d_name, "net", strlen("net"))) { - info->IRQ_TYPE_LEGACY; + info->type = IRQ_TYPE_LEGACY; info->class = IRQ_ETH; rc = 0; goto out; @@ -94,7 +94,7 @@ static int check_platform_device(char *name, struct irq_info *info) out: closedir(dirfd); - log(TO_ALL, LOG_DEBUG, "IRQ %s is of type %d and class %d\n", name, info->type, info->class) + log(TO_ALL, LOG_DEBUG, "IRQ %s is of type %d and class %d\n", name, info->type, info->class); return rc; } -- 2.7.1
participants (1)
-
root@hilbert.suse.de