- update to 1.7.0:
* Strlen checking for IRQBALANCE_BANNED_CPU env var * Typo cleanup in SOCKET_TMPFS * consolidation of numa node creation on non-numa systems * fix uninitialized use of package_mask in affinity setup * use num_online_cpus instead of core_count * fix a null ptr crash in do_one_cpu * make list searching common from glib * fix a calloc parameter bug * remove some unused variables * use g_list_free_full * remove redundant call to free_cl_opts * fix some resource leaks in main() * fix some use after free issues in check_for_irq_ban * fix resource leaks in irqballance-ui, and in add_one_node - remove Correct-capitalizing-in-service-file.patch: upstream OBS-URL: https://build.opensuse.org/package/show/Base:System/irqbalance?expand=0&rev=83
This commit is contained in:
parent
5f792c1919
commit
861094b28d
22
_service
22
_service
@ -1,22 +0,0 @@
|
||||
<services>
|
||||
<service mode="disabled" name="tar_scm">
|
||||
<param name="url">https://github.com/Irqbalance/irqbalance.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="changesgenerate">disable</param>
|
||||
<param name="filename">irqbalance</param>
|
||||
<!-- Do use a master branch with git hash in version for Tumbleweed -->
|
||||
<param name="revision">master</param>
|
||||
<param name="versionformat">1.6.0+git%cd.%h</param>
|
||||
<!-- -->
|
||||
<!-- Do use a stable version format below for products that get released
|
||||
<param name="versionformat">1.6.0</param>
|
||||
<param name="revision">v1.6.0</param>
|
||||
-->
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
<service name="recompress" mode="disabled">
|
||||
<param name="file">irqbalance*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
</services>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:39b9752e9402b9286a88cfa1daae3041efd27c817d368bebf38d794a93d539c1
|
||||
size 55042
|
3
irqbalance-1.7.0.tar.gz
Normal file
3
irqbalance-1.7.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28f2ad35945b93d90f4a5bad95b4c0871a0f644375f746ec16f61045b9ec970e
|
||||
size 54209
|
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 16 14:14:22 UTC 2020 - Dirk Mueller <dmueller@suse.com>
|
||||
|
||||
- update to 1.7.0:
|
||||
* Strlen checking for IRQBALANCE_BANNED_CPU env var
|
||||
* Typo cleanup in SOCKET_TMPFS
|
||||
* consolidation of numa node creation on non-numa systems
|
||||
* fix uninitialized use of package_mask in affinity setup
|
||||
* use num_online_cpus instead of core_count
|
||||
* fix a null ptr crash in do_one_cpu
|
||||
* make list searching common from glib
|
||||
* fix a calloc parameter bug
|
||||
* remove some unused variables
|
||||
* use g_list_free_full
|
||||
* remove redundant call to free_cl_opts
|
||||
* fix some resource leaks in main()
|
||||
* fix some use after free issues in check_for_irq_ban
|
||||
* fix resource leaks in irqballance-ui, and in add_one_node
|
||||
- remove Correct-capitalizing-in-service-file.patch: upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 18 11:10:20 UTC 2020 - Josef Möllers <josef.moellers@suse.com>
|
||||
|
||||
|
@ -21,17 +21,15 @@
|
||||
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
||||
%endif
|
||||
Name: irqbalance
|
||||
Version: 1.6.0+git20200317.0348a3b
|
||||
Version: 1.7.0
|
||||
Release: 0
|
||||
Summary: Daemon to balance IRQs on SMP machines
|
||||
License: GPL-2.0-or-later
|
||||
Group: System/Daemons
|
||||
URL: https://github.com/Irqbalance/irqbalance
|
||||
#Source: https://github.com/Irqbalance/irqbalance/archive/v%%{version}.tar.gz
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
Source: https://github.com/Irqbalance/irqbalance/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||
Source3: sysconfig.irqbalance
|
||||
Patch1: Set-fd-limit.patch
|
||||
Patch2: Correct-capitalizing-in-service-file.patch
|
||||
BuildRequires: libcap-ng-devel
|
||||
BuildRequires: libtool
|
||||
BuildRequires: ncurses-devel
|
||||
@ -39,8 +37,8 @@ BuildRequires: pkgconfig
|
||||
BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
Requires(pre): %fillup_prereq
|
||||
ExcludeArch: s390 s390x
|
||||
Recommends: %{name}-ui
|
||||
ExcludeArch: s390 s390x
|
||||
%{?systemd_requires}
|
||||
%ifnarch %{arm}
|
||||
BuildRequires: libnuma-devel
|
||||
@ -65,7 +63,7 @@ Text UI for the IRQ balance daemon.
|
||||
%build
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
%configure
|
||||
make %{?_smp_mflags} LDFLAGS="-Wl,-z,relro,-z,now" CFLAGS="%{optflags} -fPIE -pie $(ncurses6-config --cflags)" LDFLAGS="$(ncurses6-config --libs)"
|
||||
%make_build LDFLAGS="-Wl,-z,relro,-z,now" CFLAGS="%{optflags} -fPIE -pie $(ncurses6-config --cflags)" LDFLAGS="$(ncurses6-config --libs)"
|
||||
cp %{SOURCE3} .
|
||||
|
||||
%install
|
||||
|
Loading…
x
Reference in New Issue
Block a user