Update to 1.9.2 (fedora#2167835)
This commit is contained in:
parent
b81fcbb646
commit
6cc1fdc1ef
@ -1,25 +0,0 @@
|
||||
From 014765d947b3624db9d5591299ea315607733c3c Mon Sep 17 00:00:00 2001
|
||||
From: Neil Horman <neil.horman@privafy.com>
|
||||
Date: Wed, 19 Oct 2022 08:10:05 -0400
|
||||
Subject: [PATCH] Fix uninitialized variable
|
||||
|
||||
Resolves https://github.com/Irqbalance/irqbalance/pull/240#issuecomment-1283741093
|
||||
|
||||
Signed-off-by: Neil Horman <nhorman@gmail.com>
|
||||
---
|
||||
classify.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/classify.c b/classify.c
|
||||
index 3858754..4ea4b44 100644
|
||||
--- a/classify.c
|
||||
+++ b/classify.c
|
||||
@@ -646,7 +646,7 @@ static void build_one_dev_entry(const char *dirname, int build_irq)
|
||||
struct dirent *entry;
|
||||
DIR *msidir;
|
||||
int irqnum;
|
||||
- struct irq_info hint;
|
||||
+ struct irq_info hint = {0};
|
||||
char path[PATH_MAX];
|
||||
char devpath[PATH_MAX];
|
||||
|
@ -1,14 +1,12 @@
|
||||
Name: irqbalance
|
||||
Version: 1.9.1
|
||||
Release: 2%{?dist}
|
||||
Version: 1.9.2
|
||||
Release: 1%{?dist}
|
||||
Epoch: 2
|
||||
Summary: IRQ balancing daemon
|
||||
License: GPLv2
|
||||
URL: https://github.com/Irqbalance/irqbalance
|
||||
Source0: %{url}/archive/v%{version}/irqbalance-%{version}.tar.gz
|
||||
Patch1: irqbalance-1.9.0-environment-file-sysconfig.patch
|
||||
# https://github.com/Irqbalance/irqbalance/issues/241
|
||||
Patch2: irqbalance-1.9.1-fix-uninitialized-variable.patch
|
||||
|
||||
BuildRequires: autoconf automake libtool libcap-ng
|
||||
BuildRequires: glib2-devel pkgconf libcap-ng-devel
|
||||
@ -62,6 +60,9 @@ make check
|
||||
%systemd_postun_with_restart irqbalance.service
|
||||
|
||||
%changelog
|
||||
* Tue Feb 07 2023 Timothée Ravier <tim@siosm.fr> - 2:1.9.2-1
|
||||
- Update to 1.9.2 (fedora#2167835)
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2:1.9.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (irqbalance-1.9.1.tar.gz) = ec2abd3aad61e5370ca13a767fb6b5b206b61f5751853995780dd62e1657d88d74819ff5838ad2599855c701ea5d53755bf108a5427469faa7b1f042351b6068
|
||||
SHA512 (irqbalance-1.9.2.tar.gz) = d0fb157fbfc096fa9cfb4562e51fd4c3f4fa8788f72377c58b27df67c70073b787bba05e39809dcbe17532bb5b8e74b6d27c5e5b3d9af09bc9ce1a9b6aab9378
|
||||
|
Loading…
Reference in New Issue
Block a user