diff --git a/.gitignore b/.gitignore index b3d9f99..b0206e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -SOURCES/kernel-rt-3.10.0-1062.4.3.rt56.1029.tar.xz +SOURCES/kernel-rt-3.10.0-1062.7.1.rt56.1030.tar.xz SOURCES/rheldup3.x509 SOURCES/rhelkpatch1.x509 diff --git a/.kernel-rt.metadata b/.kernel-rt.metadata index 7a2c371..0855cf3 100644 --- a/.kernel-rt.metadata +++ b/.kernel-rt.metadata @@ -1,3 +1,3 @@ -3e6cf182ca9414f6f4a7ebc245a7392e6242c896 SOURCES/kernel-rt-3.10.0-1062.4.3.rt56.1029.tar.xz +cbb211fd5ed9f96b991c8a4eb6d82183e9fc8156 SOURCES/kernel-rt-3.10.0-1062.7.1.rt56.1030.tar.xz 95b9b811c7b0a6c98b2eafc4e7d6d24f2cb63289 SOURCES/rheldup3.x509 d90885108d225a234a5a9d054fc80893a5bd54d0 SOURCES/rhelkpatch1.x509 diff --git a/SPECS/kernel-rt.spec b/SPECS/kernel-rt.spec index 7a30020..776a03c 100644 --- a/SPECS/kernel-rt.spec +++ b/SPECS/kernel-rt.spec @@ -7,10 +7,10 @@ Summary: The Linux Realtime kernel %global dist .el7 # realtimeN -%global rtbuild 1029 +%global rtbuild 1030 # RHEL7 build number -%global rhel_build 1062.4.3 +%global rhel_build 1062.7.1 # The preempt RT patch level %global rttag rt56 @@ -55,6 +55,9 @@ Summary: The Linux Realtime kernel %global signmodules 1 +# Should we compress kernel modules before packaging? +%define zipmodules 1 + # if patch fuzzy patch applying will be forbidden %global with_fuzzy_patches 0 @@ -1030,6 +1033,9 @@ popd mv signing_key.x509.sign.${AAA} signing_key.x509 \ %{modsign_cmd} $RPM_BUILD_ROOT/lib/modules/%{KVERREL}.${AAA} || exit 1 \ done \ + if [ "%{zipmodules}" -eq "1" ]; then \ + find $RPM_BUILD_ROOT/lib/modules/ -type f -name '*.ko' | { NPROC=`nproc`; xargs -r -n16 -P ${NPROC:-1} xz; } \ + fi \ %{nil} %endif @@ -1433,12 +1439,10 @@ fi %endif %changelog -* Tue Nov 12 2019 Luis Claudio R. Goncalves [3.10.0-1062.4.3.rt56.1029.el7] +* Thu Nov 14 2019 Luis Claudio R. Goncalves [3.10.0-1062.7.1.rt56.1030.el7] - [rt] Update source tree to match RHEL rhel-7.7.z tree [1740918 1708718] +- [rt] sched: Call idle_balance() from finish_task_switch() (Scott Wood) [1743328] - [drm] drm/i915/cmdparser: Fix jump whitelist clearing (Dave Airlie) [1756882 1756883] {CVE-2019-0155} - -* Wed Nov 06 2019 Luis Claudio R. Goncalves [3.10.0-1062.4.2.rt56.1028.el7] -- [rt] Update source tree to match RHEL rhel-7.7.z tree [1740918 1708718] - [drm] drm/i915: Lower RM timeout to avoid DSI hard hangs (Dave Airlie) [1756815 1756816] {CVE-2019-0154} - [drm] drm/i915/gen8+: Add RC6 CTX corruption WA (Dave Airlie) [1756815 1756816] {CVE-2019-0154} - [drm] drm/i915/cmdparser: Ignore Length operands during command matching (Dave Airlie) [1756882 1756883] {CVE-2019-0155} @@ -1476,6 +1480,90 @@ fi - [virt] kvm: Convert kvm_lock to a mutex (Paolo Bonzini) [1733009 1690343] {CVE-2018-12207} - [x86] kvm: mmu: drop vcpu param in gpte_access (Paolo Bonzini) [1733009 1690343] {CVE-2018-12207} - [virt] kvm: x86, powerpc: do not allow clearing largepages debugfs entry (Paolo Bonzini) [1733009 1690343] {CVE-2018-12207} +- [kernel] sched/fair: Fix endless loop in idle_balance() (Phil Auld) [1766087 1740941] +- [kernel] sched: Skip double execution of pick_next_task_fair() (Phil Auld) [1766098 1750819] +- [kernel] sched/fair: Prevent throttling in early pick_next_task_fair() (Phil Auld) [1756267 1740038] +- [kernel] sched: Check for stop task appearance when balancing happens (Phil Auld) [1756267 1740038] +- [kernel] sched/core: Fix endless loop in pick_next_task() (Phil Auld) [1756267 1740038] +- [kernel] sched/fair: Push down check for high priority class task into idle_balance() (Phil Auld) [1756267 1740038] +- [kernel] sched/rt: Fix picking RT and DL tasks from empty queue (Phil Auld) [1756267 1740038] +- [kernel] sched/core: Allow __sched_setscheduler() in interrupts when PI is not used (Phil Auld) [1756265 1722234] +- [kernel] sched, dl: Convert switched_{from, to}_dl() / prio_changed_dl() to balance callbacks (Phil Auld) [1756265 1722234] +- [kernel] sched,dl: Remove return value from pull_dl_task() (Phil Auld) [1756265 1722234] +- [kernel] sched, rt: Convert switched_{from, to}_rt() / prio_changed_rt() to balance callbacks (Phil Auld) [1756265 1722234] +- [kernel] sched,rt: Remove return value from pull_rt_task() (Phil Auld) [1756265 1722234] +- [kernel] sched: Allow balance callbacks for check_class_changed() (Phil Auld) [1756265 1722234] +- [kernel] sched: Use replace normalize_task() with __sched_setscheduler() (Phil Auld) [1756265 1722234] +- [kernel] sched: Handle priority boosted tasks proper in setscheduler() (Phil Auld) [1756265 1722234] +- [kernel] sched: Fix broken setscheduler() (Phil Auld) [1756265 1722234] +- [kernel] sched: Consider pi boosting in setscheduler() (Phil Auld) [1756265 1722234] +- [kernel] sched: Replace post_schedule with a balance callback list (Phil Auld) [1756265 1722234] +- [kernel] sched: Guarantee task priority in pick_next_task() (Phil Auld) [1756265 1722234] +- [kernel] sched: Remove some #ifdeffery (Phil Auld) [1756265 1722234] +- [kernel] sched: Clean up idle task SMP logic (Phil Auld) [1756265 1722234] +- [kernel] sched: Fix hotplug task migration (Phil Auld) [1756265 1722234] +- [kernel] sched/fair: Remove idle_balance() declaration in sched.h (Phil Auld) [1756265 1722234] +- [kernel] sched: Push down pre_schedule() and idle_balance() (Phil Auld) [1756265 1722234] +- [kernel] sched/fair: Optimize cgroup pick_next_task_fair() (Phil Auld) [1756265 1722234] +- [kernel] sched/fair: Clean up the __clear_buddies_*() functions (Phil Auld) [1756265 1722234] +- [kernel] sched: Push put_prev_task() into pick_next_task() (Phil Auld) [1756265 1722234] +- [kernel] sched: Move rq->idle_stamp up to the core (Phil Auld) [1756265 1722234] +- [kernel] sched: Fix race in idle_balance() (Phil Auld) [1756265 1722234] +- [kernel] sched: Remove 'cpu' parameter from idle_balance() (Phil Auld) [1756265 1722234] +- [kernel] sched/fair: Reset se-depth when task switched to FAIR (Phil Auld) [1756265 1722234] +- [kernel] sched/fair: Track cgroup depth (Phil Auld) [1756265 1722234] + +* Thu Oct 31 2019 Luis Claudio R. Goncalves [3.10.0-1062.6.1.rt56.1029.el7] +- [rt] Update source tree to match RHEL rhel-7.7.z tree [1740918 1708718] +- [virt] KVM: coalesced_mmio: add bounds checking (Bandan Das) [1746797 1746798] {CVE-2019-14821} +- [fs] xfs: Fix deadlock between AGI and AGF with RENAME_WHITEOUT (Brian Foster) [1764245 1759117] +- [powerpc] powerpc/pseries/mobility: rebuild cacheinfo hierarchy post-migration (Desnes Augusto Nunes do Rosario) [1763625 1720930] +- [powerpc] powerpc/pseries/mobility: prevent cpu hotplug during DT update (Desnes Augusto Nunes do Rosario) [1763625 1720930] +- [powerpc] powerpc/cacheinfo: add cacheinfo_teardown, cacheinfo_rebuild (Desnes Augusto Nunes do Rosario) [1763625 1720930] +- [crypto] crypto: vmx - ghash: do nosimd fallback manually (Desnes Augusto Nunes do Rosario) [1763621 1739765] +- [crypto] crypto: vmx - Remove overly verbose printk from AES init routines (Desnes Augusto Nunes do Rosario) [1763621 1739765] +- [crypto] powerpc: Create disable_kernel_{fp, altivec, vsx, spe}() (Desnes Augusto Nunes do Rosario) [1763621 1739765] +- [crypto] crypto: vmx - CTR: always increment IV as quadword (Desnes Augusto Nunes do Rosario) [1763621 1739765] +- [crypto] crypto: vmx - fix copy-paste error in CTR mode (Desnes Augusto Nunes do Rosario) [1763621 1739765] +- [crypto] vmac - separate tfm and request context (Vladis Dronov) [1763620 1733561] +- [crypto] crypto: blkcipher - fix crash flushing dcache in error path (Vladis Dronov) [1761804 1741525] +- [crypto] crypto: remove direct blkcipher_walk dependency on transform (Vladis Dronov) [1761804 1741525] +- [crypto] crypto: user - prevent operating on larval algorithms (Vladis Dronov) [1761804 1741525] +- [netdrv] net/mlx5e: Support LAG TX port affinity distribution (Alaa Hleihel) [1759449 1724344] +- [netdrv] net/mlx5e: Expose new function for TIS destroy loop (Alaa Hleihel) [1759449 1724344] +- [include] net/mlx5: Add lag_tx_port_affinity capability bit (Alaa Hleihel) [1759449 1724344] +- [netdrv] net/mlx5e: Re-work TIS creation functions (Alaa Hleihel) [1759449 1724344] +- [netdrv] net/mlx5e: Disallow tc redirect offload cases we don't support (Alaa Hleihel) [1759003 1721626] +- [netdrv] net/mlx5e: Support ndo_get_phys_port_name for PF under switchdev mode (Alaa Hleihel) [1759003 1721626] +- [netdrv] net/mlx5e: Expose same physical switch_id for all representors (Alaa Hleihel) [1759003 1721626] +- [net] tcp: reset sk_send_head in tcp_write_queue_purge (Marcelo Leitner) [1748357 1748358] {CVE-2019-15239} +- [x86] kvm: x86: vmx: fix vpid leak (Vitaly Kuznetsov) [1755781 1716188] +- [kvm] kvm/x86: Move MSR_IA32_ARCH_CAPABILITIES to array emulated_msrs (Paul Lai) [1757757 1708465] +- [kvm] kvm: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts (Paul Lai) [1757757 1708465] +- [kvm] kvm: vmx: Tell the nested hypervisor to skip L1D flush on vmentry (Paul Lai) [1757757 1708465] +- [kvm] kvm: vmx: support MSR_IA32_ARCH_CAPABILITIES as a feature MSR (Paul Lai) [1757757 1708465] +- [kvm] kvm: x86: Introduce kvm_get_msr_feature() (Paul Lai) [1757757 1708465] +- [kvm] kvm: x86: Add a framework for supporting MSR-based features (Paul Lai) [1757757 1708465] +- [nvme] nvme: don't ask blk-mq to handle timed-out request (Ming Lei) [1758051 1750202] +- [block] blk-mq: mark request as REQ_TIMEOUT when .timeout() is called (Ming Lei) [1758051 1750202] +- [block] blk-mq: introduce blk_mq_clear_rq_complete() (Ming Lei) [1758051 1750202] +- [block] blk-mq: remove 'sync' argument from __blk_mq_complete_request() (Ming Lei) [1758051 1750202] +- [nvme] blk-mq: remove blk_mq_complete_request_sync (Ming Lei) [1763624 1730922] +- [nvme] nvme: wait until all completed request's complete fn is called (Ming Lei) [1763624 1730922] +- [nvme] nvme: don't abort completed request in nvme_cancel_request (Ming Lei) [1763624 1730922] +- [block] blk-mq: introduce blk_mq_tagset_wait_completed_request() (Ming Lei) [1763624 1730922] +- [block] blk-mq: introduce blk_mq_request_completed() (Ming Lei) [1763624 1730922] +- [scsi] scsi: qla2xxx: Use correct size in call to dma_free_coherent() in qla2400_sp_unmap() (Himanshu Madhani) [1759447 1668767] +- [scsi] scsi: qla2xxx: Fix different size DMA Alloc/Unmap (Himanshu Madhani) [1759447 1668767] +- [scsi] scsi: qla2xxx: Fix DMA unmap leak (Himanshu Madhani) [1759447 1668767] +- [scsi] scsi: qla2xxx: Prevent memory leak for CT req/rsp allocation (Himanshu Madhani) [1759447 1668767] +- [scsi] scsi: fnic: fix msix interrupt allocation (Govindarajulu Varadarajan) [1754836 1745053] +- [scsi] scsi: fnic: print port speed only at driver init or speed change (Govindarajulu Varadarajan) [1754836 1745053] +- [nvme] nvme-scsi: updating struct nvme_ctrl (Gopal Tiwari) [1752423 1749524] + +* Wed Oct 09 2019 Luis Claudio R. Goncalves [3.10.0-1062.5.1.rt56.1028.el7] +- [rt] Update source tree to match RHEL rhel-7.7.z tree [1740918 1708718] +- [netdrv] ixgbe: Prevent u8 wrapping of ITR value to something less than 10us (Ken Cox) [1757350 1750856] * Wed Sep 25 2019 Luis Claudio R. Goncalves [3.10.0-1062.4.1.rt56.1027.el7] - [rt] Update source tree to match RHEL rhel-7.7.z tree [1740918 1708718]