Sophie

Sophie

distrib > Mageia > 8 > armv7hl > media > core-backports-src > by-pkgid > 29a2f8a4bbf957b05fa2638cb11cefc8 > files > 65

kernel-5.18.15-1.mga8.src.rpm

# -*- Mode: rpm-spec -*-
#
# This Specfile is based on kernel-tmb spec done by
# Thomas Backlund <tmb@mandriva.org>
#
# The mkflavour() macroization done by Anssi Hannula <anssi@mandriva.org>
#
# ----------------------------------------------------------------------------
# Consult this page for extra docs:
#
# 	https://wiki.mageia.org/en/Kernel_update_workflow
#
# (feel free to adjust the wiki-page when adding or removing features
# to the spec file).
#
# After building a new kernel, remember to push:
#
# kmod-virtualbox
# kmod-vboxadditions
# kmod-xtables-addons
# drakx-installer-images (both core and nonfree)
# ----------------------------------------------------------------------------
# 
# Aarch64 still has problems with multithreaded rpmbuild 4.15-rc
%if 0%{?mageia} >= 8
%ifarch aarch64
%global _smp_nthreads_max 1
%endif
%endif

#
# Mageia kernels use kernel.org versioning
#
%define kernelversion	5
# WARNING: when patchlevel is bumped, please update drakx/kernel/list_modules.pm for new modules!!!
%define patchlevel	18
# sublevel is now used for -stable patches
%define sublevel	15

# Package release
%define mgarel		1

# kernel Makefile extraversion is substituted by
# rcX which are either 0 (empty), X (as in rcX)
%define rcX		0

# kernel base name (also name of srpm)
%define kname		kernel

# Patch tarball tag
%define ktag		mga

%define rpmtag		%{distsuffix}%{mgaver}
%if %{rcX}
%define rpmrel		%mkrel 0.rc%{rcX}.%{mgarel}
%else
%define rpmrel		%mkrel %{mgarel}
%endif

# fakerel and fakever never change, they are used to fool
# rpm/urpmi/smart and ensure the kernels are installed,
# not upgraded so old kernel is not overwritten or removed
%define fakever		1
%define fakerel	%mkrel	1

# version defines
%define kversion	%{kernelversion}.%{patchlevel}.%{sublevel}
%define kverrel		%{kversion}-%{rpmrel}

# When we are using a rcX patch, the tarball is a sublevel -1
%if %{rcX}
%if %sublevel
%define tar_ver		%{kernelversion}.%{patchlevel}
%else
%define tar_ver		%{kernelversion}.%(expr %{patchlevel} - 1)
%endif
%else
%define tar_ver		%{kernelversion}.%{patchlevel}
%endif

# Used for not making too long names for rpms or search paths
%if %rcX
%define buildrpmrel	0.rc%{rcX}.%{mgarel}%{rpmtag}
%else
%define buildrpmrel	%{mgarel}%{rpmtag}
%endif
%define buildrel	%{kversion}-%{buildrpmrel}

# Having different top level names for packges means that you have to remove
# them by hard :(
%define top_dir_name	%{kname}-%{_arch}

%define build_dir	${RPM_BUILD_DIR}/%{top_dir_name}
%define src_dir		%{build_dir}/linux-%{tar_ver}

# Disable useless debug rpms...
%global _enable_debug_packages	%{nil}
%global debug_package		%{nil}
%global __debug_package		%{nil}
%global __debug_install_post	%{nil}
%global _build_id_links		none

# no bytecompiling wanted as it breaks build on selftests we dont even ship
# for older buildsystems
%global _python_bytecompile_build 0
# for systems with >= rpm-mageia-setup-2.29-1.mga7
%global __brp_python_bytecompile %nil

# Build defines
%define build_doc		1
%define build_uheaders		1
%define build_source		1
%define build_devel		1

%define build_debug		0

# Build desktop i586 / 4GB
%ifarch %{ix86}
%define build_desktop586	1
%endif

# Build desktop (i686 / 64GB) / x86_64 / arm / aarch64
%define build_desktop		1

# Build server (i686 / 64GB)/x86_64 / aarch64
%ifnarch %{arm}
%define build_server		1
%else
%define build_server		0
%endif

# build cpupower
%ifnarch %{arm} aarch64
%define build_cpupower		1
%else
%define build_cpupower		0
%endif

# build perf
%define build_perf		1

# bpf
%define build_bpftool		1
%define build_libbpf		1

# compress modules with xz
%ifnarch %{arm}
%define build_modxz		1
%else
%define build_modxz		0
%endif
# End of user definitions

# buildtime override flags
%{?_without_desktop586: %global build_desktop586 0}
%{?_without_desktop: %global build_desktop 0}
%{?_without_server: %global build_server 0}
%{?_without_doc: %global build_doc 0}
%{?_without_uheaders: %global build_uheaders 0}
%{?_without_source: %global build_source 0}
%{?_without_devel: %global build_devel 0}
%{?_without_debug: %global build_debug 0}
%{?_without_perf: %global build_perf 0}
%{?_without_cpupower: %global build_cpupower 0}
%{?_without_bpftool: %global build_bpftool 0}
%{?_without_libbpf: %global build_libbpf 0}
%{?_without_modxz: %global build_modxz 0}

%{?_with_desktop586: %global build_desktop586 1}
%{?_with_desktop: %global build_desktop 1}
%{?_with_server: %global build_server 1}
%{?_with_doc: %global build_doc 1}
%{?_with_uheaders: %global build_uheaders 1}
%{?_with_source: %global build_source 1}
%{?_with_devel: %global build_devel 1}
%{?_with_debug: %global build_debug 1}
%{?_with_perf: %global build_perf 1}
%{?_with_cpupower: %global build_cpupower 1}
%{?_with_bpftool: %global build_bpftool 1}
%{?_with_libbpf: %global build_libbpf 1}
%{?_with_modxz: %global build_modxz 1}

# For the .nosrc.rpm
%define build_nosrc	0
%{?_with_nosrc: %global build_nosrc 1}

%if %(if [ -z "$CC" ] ; then echo 0; else echo 1; fi)
%define kmake %make_build CC="$CC"
%else
%define kmake %make_build
%endif
# there are places where parallel make don't work
%define smake make

# Parallelize xargs invocations on smp machines
%define kxargs xargs %([ -z "$RPM_BUILD_NCPUS" ] \\\
	&& RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"; \\\
	[ "$RPM_BUILD_NCPUS" -gt 1 ] && echo "-P $RPM_BUILD_NCPUS")

# arm(64) arch matching
%define target_arch	%(echo %{_arch} | sed -e 's/arm.*/arm/' -e 's/aarch64/arm64/')


#
# SRC RPM description
#
Summary:	Linux kernel built for Mageia
Name:		%{kname}
Version:	%{kversion}
Release:	%{rpmrel}
License:	GPLv2
Group:		System/Kernel and hardware
ExclusiveArch:	%{ix86} x86_64 %{arm} aarch64
ExclusiveOS:	Linux
URL:		https://www.kernel.org/

####################################################################
#
# Sources
#
### This is for full SRC RPM
Source0:	https://cdn.kernel.org/pub/linux/kernel/v%{kernelversion}.x/linux-%{tar_ver}.tar.xz
Source1:	https://cdn.kernel.org/pub/linux/kernel/v%{kernelversion}.x/linux-%{tar_ver}.tar.sign
### This is for stripped SRC RPM
%if %build_nosrc
NoSource: 0
%endif
# This is for disabling *config, mrproper, prepare, scripts on -devel rpms
Source2:	disable-mrproper-in-devel-rpms.patch

Source4:	README.kernel-sources

# for creating stable queue patchlist
Source5:	generate-patchlist.sh

# copy to patched source tree along with the defconfigs and run it
Source10:	defconfig-updater.sh
Source09:	defconfig-updater-simple.sh
# x86_64 defconfigs
Source11:	defconfig-x86_64-desktop
Source12:	defconfig-x86_64-server
# i386 defconfigs
Source13:	defconfig-i386-desktop586
Source14:	defconfig-i386-desktop
Source15:	defconfig-i386-server
# arm64 defconfigs
Source16:	defconfig-arm64-desktop
Source17:	defconfig-arm64-server
# arm defconfigs
Source18:	defconfig-arm-desktop

# config and systemd service file from fedora
Source50:	cpupower.service
Source51:	cpupower.config

####################################################################
#
# Patches

#
# Patch0 to Patch10 are for core kernel upgrades.
#

%if %sublevel
Patch1:		https://cdn.kernel.org/pub/linux/kernel/v%{kernelversion}.x/patch-%{kernelversion}.%{patchlevel}.%{sublevel}.xz
%endif
%if %{rcX}
# (tmb) Created with:
# wget https://git.kernel.org/torvalds/p/v5.10-rc7/v5.9 -O patch-5.10-rc7
# xz -6e patch-5.10-rc7
Patch2:		patch-%{kernelversion}.%{patchlevel}-rc%{rcX}.xz
%endif

###
### Stable Queue can be big
### Patches from 100-999
###
### add patches here by copying contents of kernel matching queue-x.y from:
### https://git.kernel.org/pub/scm/linux/kernel/git/stable/stable-queue.git/tree/
### to SOURCES, generate patchlist with generate-patchlist.sh and paste it here
###

###
### Arch
### Patches from 1000
###

# laptop needing pci=assign-busses (#18989, needs to be submitted upstream)
Patch1000:	x86-pci-toshiba-equium-a60-assign-busses.patch

# If users choose a bad video mode, allow to jump to
# a working one (TTL: forever)
Patch1001:	x86-boot-video-80x25-if-break.patch

# Allow poweroff on UP machines running SMP kernels
Patch1005:	x86-default_poweroff_up_machines.patch

# raise vmalloc to fix https://bugs.mageia.org/show_bug.cgi?id=904
Patch1010:	x86-increase-default-minimum-vmalloc-area-by-64MB-to-192MB.patch

# slows down boot
Patch1015:	Revert-cpufreq-pcc-Enable-autoload-of-pcc-cpufreq-fo.patch

# AMD Zen mwait optimization v3
Patch1020:	x86-Use-HLT-in-default_idle-when-idle-nomwait-cmdlin.patch
Patch1021:	x86-Remove-vendor-checks-from-prefer_mwait_c1_over_h.patch
Patch1022:	x86-Fix-comment-for-X86_FEATURE_ZEN.patch

# amd_nb
Patch1030:	x86-amd_nb-Add-AMD-Family-17h-A0-AF-IDs.patch
Patch1031:	x86-amd_nb-Add-Family-19h-model-70h-7Fh-IDs.patch
Patch1032:	x86-amd_nb-Add-Family-19h-model-60h-6Fh-IDs.patch

# init
Patch1050:	init-add-hostname-kernel-parameter.patch

# retbleed fixes
Patch1055:	x86-speculation-Make-all-RETbleed-mitigations-64-bit-only.patch
Patch1056:	x86-bugs-do-not-enable-IBPB-at-firmware-entry-when-IBPB-is-not-available.patch
Patch1057:	lkdtm-Disable-return-thunks-in-rodata.c.patch

###
### ACPI
###

# CLEVO M360S acpi irq workaround
Patch1100:	acpi-CLEVO-M360S-disable_acpi_irq.patch

# Clevo M720SR freezes with C3
Patch1105:	acpi-processor-M720SR-limit-to-C2.patch

# ACPI PM fixes (TTL: 5.18)
Patch1130:	x86-ACPI-State-Optimize-C3-entry-on-AMD-CPUs.patch

###
### Block
###

# FIXME: Don't know know why this is needed
Patch1200:	scsi-megaraid-new-sysfs-name.patch

# adds aliases to support upgrade from old dm-raid45 patch
Patch1215:	dm-raid-aliases.patch

# disable floppy autoloading (mga #4696)
Patch1220:	block-floppy-disable-pnp-modalias.patch

###
### Crypto
###

###
### dma
###

###
### EDAC
###

Patch1280:	EDAC-ghes-Set-the-DIMM-label-unconditionally.patch

###
### File-system
###

# aufs diffed from: https://github.com/sfjro/aufs5-linux/tree/aufs5.18 (mga#8314)
Patch1310:	fs-aufs5.18.patch
# symbol exports needed for modular aufs
Patch1311:	fs-aufs5.18-symbol-exports.patch
# set aufs tristate
Patch1312:	fs-aufs5.18-tristate.patch

#
Patch1320:	userfaultfd-provide-properly-masked-address-for-huge.patch

###
### FireWire
###

# adding module aliases to ease upgrade from ieee1394
Patch1400:	firewire-ieee1394-module-aliases.patch

###
### Firmware
###

###
### GPU/DRM
###

# mga compat option
Patch1500:	drm-gpu-drm-treat-nokmsboot-as-nomodeset.patch

# amdgpu
# switch SI and CIK from radeon to amdgpu
Patch1520:	drm-amdgpu-SI-and-CIK-enabled-by-default.patch

# new Q57 Host Bridge id
Patch1530:	char-agp-intel-new-Q57-id.patch

# i915
# TGL
Patch1546:	drm-i915-psr-Disable-PSR2-selective-fetch-for-all-TGL-steps.patch

# https://bugzilla.kernel.org/show_bug.cgi?id=206653#c19
Patch1552:	i2c_nvidia_gpu-change-err-into-info.patch

# 5.16.3 regression
Patch1560:	Revert-drm-nouveau-pmu-gm200-avoid-touching-PMU-outs.patch

###
### gpio
###

###
### hwmon
###

# k10temp
Patch1600:	hwmon-k10temp-Add-support-for-family-17h-models-A0h-AFh.patch
Patch1601:	hwmon-k10temp-Add-support-for-family-19h-models-70h-7Fh.patch
Patch1602:	hwmon-k10temp-Add-support-for-family-19h-models-60h-6Fh.patch

###
### i2c
###

###
### iommu
###

###
### Input
###

Patch1700:	input-i8042-quirks-for-Fujitsu-Lifebook-A544-and-Lif.patch

###
### HID
###

###
### kernel
###

# CVE-2021-4204
Patch1800:	bpf-prevent-helper-argument-PTR_TO_ALLOC_MEM-to-have-offset-other-than-0.patch

###
### MFD
###

###
### MM
###

###
### Network
###

# SiS 190 fixes
Patch1900:	net-sis190-fix-list-usage.patch

# netfilter IFWLOG support
Patch1910:	net-netfilter-IFWLOG.patch
Patch1911:	net-netfilter-IFWLOG-mdv.patch
Patch1912:	net-netfilter-IFWLOG-2.6.35-buildfix.patch
Patch1913:	net-netfilter-IFWLOG-2.6.37-buildfix.patch
Patch1914:	net-ipv4-netfilter-ipt_IFWLOG-3.6-buildfix.patch
Patch1915:	net-netfilter-IFWLOG-3.7-buildfix.patch
Patch1916:	net-netfilter-IFWLOG-remove-unused-label.patch
Patch1917:	net-netfilter-ipt_IFWLOG-4.12-buildfix.patch
Patch1918:	net-netfilter-IFWLOG-5.0-buildfix.patch

# netfilter psd support
Patch1920:	net-netfilter-psd.patch
Patch1921:	net-netfilter-psd-mdv.patch
Patch1922:	net-netfilter-psd-2.6.35-buildfix.patch
Patch1923:	net-netfilter-psd-fix-redefines.patch

# rtw88 wifi
# add alias for the replaced r8822be staging driver
Patch1930:	net-wireless-rtw88-add-r8822be-alias.patch
# add alias for the replaced 8723de 3rdparty driver
Patch1931:	net-wireless-rtw88-add-8723de-alias.patch

# iwlfiwi
Patch1980:	net-wireless-iwlwifi-add-new-pci-id-for-6235.patch

###
### PCI
###

###
### pinctrl
###

###
### Platform
###

# Allow access to Shuttle WMI interface controls
# (Mainly allow turning on/off webcam and wireless on Shuttle DA18IE and DA18IM)
Patch2050:	platform-x86-add-shuttle-wmi-driver.patch
Patch2051:	platform-x86-shuttle-wmi-drop-devinit-exit.patch
Patch2052:	platform-x86-shuttle-wmi-4.2-buildfix.patch
Patch2053:	platform-x86-shuttle-wmi-4.13-buildfix.patch
Patch2054:	platform-x86-shuttle-wmi-kernel-5.5.patch

###
### PM
###

###
### Sound
###

###
### SPI
###

###
### Staging
###

###
### Thermal
###

###
### Thunderbolt
###

###
### USB
###

Patch2300:	hid-usbhid-IBM-BladeCenterHS20-quirk.patch

Patch2310:	usb-storage-unusual_devs-add-id.patch
Patch2311:	usb-storage-unusual_devs-add-id-2.6.37-buildfix.patch

###
### V4L
###

# pwc driver name in /proc/bus/devices, /sys fix and "advertisement" removal
Patch2400:	media-usb-pwc-lie-in-proc-usb-devices.patch

###
### Video
###

# Mageia framebuffer boot logo
Patch2500:	video-mageia-logo.patch

###
### Virt
###

# fix gcc-10 build
Patch2550:	KVM-squelch-uninitialized-variable-warning.patch

###
### Tools
###

# wipe powerpc refrence so we can nuke dangling symlinks (mga#17676)
Patch2600:	tools-testing-selftest-Makefile-remove-powerpc-reference.patch

# fix perf build
Patch2605:	tools-perf-ui-include-slang.patch

###
### UAPI
###

Patch2700:	uapi-avoid-namespace-conflict-in-linux-posix_types.h.patch

###
### 3rdparty
###

Patch3000:	3rd-3rdparty-tree.patch
Patch3001:	3rd-3rdparty-merge.patch

# add rtl8812 support (mga#21043)
# from https://github.com/aircrack-ng/rtl8812au.git
Patch3200:	3rd-rtl8812au.patch
Patch3201:	3rd-rtl8812au-Kconfig-Makefile.patch
Patch3202:	3rd-rtl8812au-rename.patch
Patch3203:	3rd-rtl8812au-kernel-5.17.patch
Patch3204:	3rd-rtl8812au-kernel-5.18.patch

# add rtl8723de support (mga#22559)
Patch3300:	3rd-rtl8723de.patch
Patch3301:	3rd-rtl8723de-Kconfig-Makefile.patch
Patch3302:	3rd-rtl8723de-fix-redefine.patch
Patch3303:	3rd-rtl8723de-nodebug.patch
Patch3304:	3rd-rtl8223de-kernel-5.6.patch
Patch3305:	3rd-rtl8723de-add-kernel-5.8-support.patch

# viahss
Patch3400:	3rd-viahss-0.92.patch
Patch3401:	3rd-viahss-config.patch
Patch3402:	3rd-viahss-module-license.patch
Patch3403:	3rd-viahss-2.6.35-buildfix.patch
Patch3404:	3rd-viahss-3.0-buildfix.patch
Patch3405:	3rd-viahss-Kconfig-Makefile.patch

# fix Kconfig files for 3rdparty:
Patch3900:	3rd-fix-kconfig.patch

###
### Python fixes
###
Patch4000:	linux-5.18-python3.patch

###
### TTY
###

###
### Security fixes
###
Patch5002:	CVE-2019-12379.patch
#
# CVE-2020-16119
# https://bugzilla.redhat.com/show_bug.cgi?id=1886374
# https://bugzilla.redhat.com/show_bug.cgi?id=1888083
Patch5003:	CVE-2020-16119-DCCP-CCID-structure-use-after-free.patch

###
### Cosmetic fixes (e.g. typos, spelling, etc.)
###

# broken rtla cleaner
Patch6000:	hack-broken-rtla-cleaner.patch


### Fixes from FC kernel
# Inspur Advantech PCI ids
Patch7000:	0001-scsi-smartpqi-add-inspur-advantech-ids.patch
# Vulcan AHCI PCI bar (aarch64)
Patch7001:	0001-Vulcan-AHCI-PCI-bar-fix-for-Broadcom-Vulcan-early-si.patch

#END
####################################################################

# Defines for the things that are needed for all the kernels
#
%define common_desc_kernel The kernel package contains the Linux kernel (vmlinuz), the core of your \
Mageia operating system. The kernel handles the basic functions \
of the operating system: memory allocation, process allocation, device \
input and output, etc.

%define common_desc_kernel_smp This kernel relies on in-kernel smp alternatives to switch between up & smp \
mode depending on detected hardware. To force the kernel to boot in single \
processor mode, use the "nosmp" boot parameter.

### Global Requires/Provides
%define requires1	bootloader-utils >= 1.16-1
%define requires2	dracut >= 046-2
%define requires3	kmod >= 12-2
%define requires4	sysfsutils >= 2.1.0-16
%define requires5	kernel-firmware >= 20190603-1
# ldetect-lst with SI/CIK swich from radeon to amdgpu
%define requires6	ldetect-lst >= 0.6.25-1

%define kprovides1	%{kname} = %{kverrel}
%define kprovides2	kernel = %{tar_ver}
%define kprovides3	alsa = 1.0.26
%define kprovides_server drbd-api = 88

# conflict dkms packages that dont support kernel-5.12
%define kconflicts1	dkms-broadcom-wl < 6.30.223.271-61
%define kconflicts2	dkms-nvidia-current < 470.74-1
%define kconflicts3	dkms-nvidia390 < 390.144-1
%define kconflicts4	dkms-nvidia340 < 340.108-15
%define kconflicts5	dkms-nvidia304 < 304.137-3
%define kconflicts6	dkms-virtualbox < 6.1.20-1
%define kconflicts7	dkms-xtables-addons < 3.17-1
# (tmb) conflict older btrfs-progs to get the new in same transaction and in initrd
%define kconflicts8	btrfs-progs < 5.10-1
# (tmb) conflict too old radeon-firmware to get the uvd firmwares in initrd
%define kconflicts9	radeon-firmware < 20201218-1
# (tmb) conflict old firmware to get the firmwares in initrd
%define kconflicts10	kernel-firmware-nonfree < 20201230-1
# (tmb) conflict old microcode to get updated ones in initrd for early loading
%define kconflicts11	microcode < 0.20201118-2
# (tmb) conflict old theme to get mga8 theme in initrd
%define kconflicts12    mageia-gfxboot-theme < 4.5.14.11-2
# (tmb) conflict too old grub2(-efi)
%define kconflicts13	grub2 < 2.02.0-15
%define kconflicts14	grub2-efi < 2.02.0-15
# (tmb) conflict too old efibootmgr
%define kconflicts15	efibootmgr < 16-3
# (tmb) force new theme in initrd
%define kconflicts16	mageia-theme < 8.0-2

Autoreqprov:		no

# require new gcc & binutils
BuildRequires:		gcc >= 10.4.0-2
BuildRequires:		binutils >= 1:2.36.1-1.4
#
BuildRequires:		kmod >= 12-2
BuildRequires:		bc
# for crypto stuff
BuildRequires:		pkgconfig(openssl)
# since 4.16
BuildRequires:		bison
BuildRequires:		diffutils
BuildRequires:		elfutils-devel
BuildRequires:		flex
# for headers_install
BuildRequires:		rsync
# for cpupower
%if %{build_cpupower}
BuildRequires:		pkgconfig(libpci)
%endif
# for perf
%if %{build_perf}
BuildRequires:		audit-devel
BuildRequires:		binutils-devel
BuildRequires:		gtk2-devel
BuildRequires:		libunwind-devel
BuildRequires:		newt-devel
BuildRequires:		python3-devel
BuildRequires:		zlib-devel
BuildRequires:		asciidoc
BuildRequires:		xmlto-notex
BuildRequires:		perl-devel
%if 0%{?mageia} >= 8
BuildRequires:		systemtap-sdt-devel
BuildRequires:		babeltrace-devel
%else
BuildRequires:		libbabeltrace-devel
%endif
%ifarch %{ix86} x86_64
BuildRequires:		numa-devel
%endif
%endif
%if %{build_bpftool}
BuildRequires:		python3-docutils
BuildRequires:		cap-devel
%endif

%description
%common_desc_kernel
%ifnarch %{arm}
%common_desc_kernel_smp
%endif

# mkflavour() name flavour processor
# name: the flavour name in the package name
# flavour: first parameter of CreateKernel()
%define mkflavour()					\
%package -n %{kname}-%{1}-%{buildrel}			\
Version:	%{fakever}				\
Release:	%{fakerel}				\
Provides:	%kprovides1 %kprovides2 %kprovides3	\
%{expand:%%{?kprovides_%{1}:Provides: %{kprovides_%{1}}}} \
Provides:	%{kname}-%{1}				\
Requires(pre):	%requires1 %requires2 %requires3 %requires4 \
Requires:	%requires2 %requires5 %requires6	\
Conflicts:	%kconflicts1 %kconflicts2 %kconflicts3	\
Conflicts:	%kconflicts4 %kconflicts5 %kconflicts6	\
Conflicts:	%kconflicts7 %kconflicts8 %kconflicts9	\
Conflicts:	%kconflicts10 %kconflicts11 %kconflicts12 \
Conflicts:	%kconflicts13 %kconflicts14 %kconflicts15 \
Conflicts:	%kconflicts16				\
%if 0%{?mageia} >= 8					\
Obsoletes:	crda					\
Obsoletes:	crda-devel				\
Obsoletes:	fuse-exfat				\
%endif							\
Provides:	should-restart = system			\
Provides:	installonlypkg(kernel)			\
Recommends:	iw cpupower microcode			\
Recommends:	%{kname}-%{1}-latest			\
%ifarch %{ix86}						\
Conflicts:	arch(x86_64)				\
%endif							\
Summary:	%{expand:%{summary_%(echo %{1} | sed -e "s/-/_/")}} \
Group:		System/Kernel and hardware		\
%description -n %{kname}-%{1}-%{buildrel}		\
%common_desc_kernel %{expand:%{info_%(echo %{1} | sed -e "s/-/_/")}} \
%ifnarch %{arm}						\
%common_desc_kernel_smp					\
%endif							\
							\
%if %build_devel					\
%package -n	%{kname}-%{1}-devel-%{buildrel}		\
Version:	%{fakever}				\
Release:	%{fakerel}				\
Requires:	glibc-devel ncurses-devel make gcc perl	\
Requires:	gcc >= 5.5.0-1				\
%ifarch x86_64						\
Requires:	pkgconfig(libelf)			\
%endif							\
Summary:	The kernel-devel files for %{kname}-%{1}-%{buildrel} \
Group:		Development/Kernel			\
Provides:	%{kname}-devel = %{kverrel}		\
Provides:	%{kname}-%{1}-devel			\
Recommends:	%{kname}-%{1}-devel-latest		\
%ifarch %{ix86}						\
Conflicts:	arch(x86_64)				\
%endif							\
%description -n %{kname}-%{1}-devel-%{buildrel}		\
This package contains the kernel files (headers and build tools) \
that should be enough to build additional drivers for	\
use with %{kname}-%{1}-%{buildrel}.			\
							\
If you want to build your own kernel, you need to install the full \
%{kname}-source-%{buildrel} rpm.			\
							\
%endif							\
							\
%if %build_debug					\
%package -n	%{kname}-%{1}-%{buildrel}-debuginfo	\
Version:	%{fakever}				\
Release:	%{fakerel}				\
Summary:	Files with debuginfo for %{kname}-%{1}-%{buildrel} \
Group:		Development/Debug			\
Provides:	kernel-debug = %{kverrel}		\
%ifarch %{ix86}						\
Conflicts:	arch(x86_64)				\
%endif							\
%description -n %{kname}-%{1}-%{buildrel}-debuginfo	\
This package contains the files with debuginfo to aid in debug tasks	\
when using %{kname}-%{1}-%{buildrel}.			\
							\
If you need to look at debug information or use some application that	\
needs debugging info from the kernel, this package may help.	\
							\
%endif							\
							\
%package -n %{kname}-%{1}-latest			\
Version:	%{kversion}				\
Release:	%{rpmrel}				\
Summary:	Virtual rpm for latest %{kname}-%{1}	\
Group:		System/Kernel and hardware		\
Requires:	%{kname}-%{1}-%{buildrel}		\
%ifarch %{ix86}						\
Conflicts:	arch(x86_64)				\
%endif							\
Obsoletes:	vboxadditions-kernel-%{1}-latest	\
Obsoletes:	kernel-tmb-%{1}-latest			\
%description -n %{kname}-%{1}-latest			\
This package is a virtual rpm that aims to make sure you always have the \
latest %{kname}-%{1} installed...			\
							\
%if %build_devel					\
%package -n %{kname}-%{1}-devel-latest			\
Version:	%{kversion}				\
Release:	%{rpmrel}				\
Summary:	Virtual rpm for latest %{kname}-%{1}-devel \
Group:		Development/Kernel			\
Requires:	%{kname}-%{1}-devel-%{buildrel}		\
%ifarch %{ix86}						\
Conflicts:	arch(x86_64)				\
%endif							\
Provides:	%{kname}-devel-latest			\
Obsoletes:	kernel-tmb-%{1}-devel-latest		\
%description -n %{kname}-%{1}-devel-latest		\
This package is a virtual rpm that aims to make sure you always have the \
latest %{kname}-%{1}-devel installed...			\
							\
%endif							\
							\
%posttrans -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-posttrans \
%postun -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1}-postun \
							\
%if %build_devel					\
%post -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-post \
%preun -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-preun \
%postun -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1}-postun \
%endif							\
							\
%files -n %{kname}-%{1}-%{buildrel} -f kernel_files.%{1} \
%files -n %{kname}-%{1}-latest				\
							\
%if %build_devel					\
%files -n %{kname}-%{1}-devel-%{buildrel} -f kernel_devel_files.%{1} \
%files -n %{kname}-%{1}-devel-latest			\
%endif							\
							\
%if %build_debug					\
%files -n %{kname}-%{1}-%{buildrel}-debuginfo -f kernel_debug_files.%{1} \
%endif

%ifarch %{ix86}
#
# kernel-desktop586: i586, smp-alternatives, 4GB
#
%if %build_desktop586
%define summary_desktop586 Linux kernel for desktop use with i586 and less than 4GB RAM
%define info_desktop586 This kernel is compiled for desktop use, single or \
multiple i586 processor(s)/core(s) and less than 4GB RAM (usually 3-3.5GB \
detected, if you need/want to use all 4GB or more, install kernel-server), \
using HZ_1000, voluntary preempt, CFS cpu scheduler and cfq i/o scheduler.
%mkflavour desktop586
%endif
%endif

#
# kernel-desktop: i686, smp-alternatives, 64 GB / x86_64 / arm / aarch64
#
%if %build_desktop
%ifarch %{ix86}
%define summary_desktop Linux Kernel for desktop use with i686 and up to 64GB RAM
%define info_desktop This kernel is compiled for desktop use, single or \
multiple i686 processor(s)/core(s) and up to 64GB RAM, using HZ_1000, \
voluntary preempt, CFS cpu scheduler and cfq i/o scheduler.
%else
%define summary_desktop Linux Kernel for desktop use with %{_arch}
%define info_desktop This kernel is compiled for desktop use, single or \
multiple %{_arch} processor(s)/core(s), using HZ_1000, voluntary preempt, \
CFS cpu scheduler and cfq i/o scheduler.
%endif
%mkflavour desktop
%endif

#
# kernel-server: i686, smp-alternatives, 64 GB / x86_64 / aarch64
#
%if %build_server
%ifarch %{ix86}
%define summary_server Linux Kernel for server use with i686 & 64GB RAM
%define info_server This kernel is compiled for server use, single or \
multiple i686 processor(s)/core(s) and up to 64GB RAM using PAE, using \
no preempt, HZ_100, CFS cpu scheduler and cfq i/o scheduler.
%else
%define summary_server Linux Kernel for server use with %{_arch}
%define info_server This kernel is compiled for server use, single or \
multiple %{_arch} processor(s)/core(s), using no preempt, HZ_100, \
CFS cpu scheduler and cfq i/o scheduler.
%endif
%mkflavour server
%endif

#
# kernel-source
#
%if %build_source
%package -n %{kname}-source-%{buildrel}
Version:	%{fakever}
Release:	%{fakerel}
Requires:	glibc-devel, ncurses-devel, make, gcc, perl, diffutils
Summary:	The Linux source code for %{kname}-%{buildrel}
Group:		Development/Kernel
Autoreqprov:	no
Provides:	kernel-source = %{kverrel}
Buildarch:	noarch

%description -n %{kname}-source-%{buildrel}
The %{kname}-source package contains the source code files for the Mageia
kernel. Theese source files are only needed if you want to build your
own custom kernel that is better tuned to your particular hardware.

If you only want the files needed to build 3rdparty (nVidia, Ati, dkms-*,...)
drivers against, install the *-devel-* rpm that is matching your kernel.

#
# kernel-source-latest: virtual rpm
#
%package -n %{kname}-source-latest
Version: 	%{kversion}
Release: 	%{rpmrel}
Summary: 	Virtual rpm for latest %{kname}-source
Group:   	Development/Kernel
Requires: 	%{kname}-source-%{buildrel}
Buildarch:	noarch

%description -n %{kname}-source-latest
This package is a virtual rpm that aims to make sure you always have the
latest %{kname}-source installed...
%endif

#
# kernel-doc: documentation for the Linux kernel
#
%if %build_doc
%package -n %{kname}-doc
Version: 	%{kversion}
Release: 	%{rpmrel}
Summary: 	Various documentation bits found in the %{kname} source
Group: 		Documentation
Buildarch:	noarch

%description -n %{kname}-doc
This package contains documentation files from the %{kname} source.
Various bits of information about the Linux kernel and the device drivers
shipped with it are documented in these files. You also might want install
this package if you need a reference to the options that can be passed to
Linux kernel modules at load time.
%endif

#
# kernel userspace-headers
#
%if %{build_uheaders}
%package -n %{kname}-userspace-headers
Version:	%{kversion}
Release:	%{rpmrel}
Summary:	Linux kernel header files for userspace
Group:		System/Kernel and hardware
%rename		linux-userspace-headers
Provides:	kernel-headers = 1:%{version}-%{release}

%description -n %{kname}-userspace-headers
C header files from the Linux kernel. The header files define structures
and constants that are needed for building most standard programs.

This package is not suitable for building kernel modules.
%endif

#
# kernel/tools
#
%if %{build_perf}
%package -n perf
Version:	%{kversion}
Release:	%{rpmrel}
Summary:	perf tool and the supporting documentation
Group:		System/Kernel and hardware

%description -n perf
the perf tool and the supporting documentation.
%endif

%if %{build_cpupower}
%package -n cpupower
Version:	%{kversion}
Release:	%{rpmrel}
Summary:	the cpupower tools
Group:		System/Kernel and hardware
Requires(post):  rpm-helper >= 0.24.8-1
Requires(preun): rpm-helper >= 0.24.8-1
Obsoletes:	cpufreq cpufrequtils

%description -n cpupower
the cpupower tools.

%post -n cpupower
%_post_service cpupower

%preun -n cpupower
%_preun_service cpupower

%package -n cpupower-devel
Version:	%{kversion}
Release:	%{rpmrel}
Summary:	devel files for cpupower
Group:		Development/Kernel
Requires:	cpupower = %{kversion}-%{rpmrel}
Conflicts:	%{_lib}cpufreq-devel

%description -n cpupower-devel
This package contains the development files for cpupower.
%endif

%if %{build_bpftool}
%package -n bpftool
Summary:	Inspection and simple manipulation of eBPF programs and maps
Group:		System/Kernel and hardware

%description -n bpftool
This package contains the bpftool, which allows inspection and simple
manipulation of eBPF programs and maps.
%endif

%if %{build_libbpf}
%package -n %{_lib}bpf0
Summary:	The bpf library from kernel source
Group:		System/Libraries

%description -n %{_lib}bpf0
This package contains the kernel source bpf library.

%package -n %{_lib}bpf-devel
Summary: 	Developement files for the bpf library from kernel source
Group:		Development/Kernel
Requires:	%{_lib}bpf0

%description -n %{_lib}bpf-devel
This package includes libraries and header files needed for development
of applications which use bpf library from kernel source.
%endif

#
# End packages - here begins build stage
#
%prep
%setup -q -n %top_dir_name -c

cd %src_dir

%autopatch -p1

# PATCH END

#
# Setup Begin
#

# install x86 defconfigs
install -m 644 %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} %{SOURCE15} arch/x86/configs/
# install arm64 defconfigs
install -m 644 %{SOURCE16} %{SOURCE17} arch/arm64/configs/
# install arm defconfigs
install -m 644 %{SOURCE18} arch/arm/configs/

# make sure the kernel has the sublevel we know it has...
LC_ALL=C perl -p -i -e "s/^SUBLEVEL.*/SUBLEVEL = %{sublevel}/" Makefile

# get rid of unwanted files
find . -name '*~' -o -name '*.orig' -o -name '*.append' | %kxargs rm -f

# fix missing exec flag on file introduced in 4.14.10-rc1
chmod 755 tools/objtool/sync-check.sh

%build
# Common target directories
%define _kerneldir /usr/src/kernel-%{kversion}-%{buildrpmrel}
%define _bootdir /boot
%define _modulesdir /lib/modules
%define _efidir %{_bootdir}/efi/mageia

# Directories definition needed for building
%define temp_root %{build_dir}/temp-root
%define temp_source %{temp_root}%{_kerneldir}
%define temp_boot %{temp_root}%{_bootdir}
%define temp_modules %{temp_root}%{_modulesdir}

PrepareKernel() {
	name=$1
	extension=$2

	echo "Make config for kernel $extension"

	%smake ARCH=%{target_arch} -s mrproper

	if [ "%{target_arch}" == "i386" -o "%{target_arch}" == "x86_64" ]; then
		conf_dir=arch/x86/configs
	else
		conf_dir=arch/%{target_arch}/configs
	fi
	if [ -z "$name" ]; then
		cp $conf_dir/defconfig-%{target_arch}-desktop .config
	else
		cp $conf_dir/defconfig-%{target_arch}-$name .config
	fi

	# make sure EXTRAVERSION says what we want it to say
	LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -$extension/" Makefile

	%smake ARCH=%{target_arch} oldconfig
}

BuildKernel() {
	KernelVer=$1

	echo "Building kernel $KernelVer"

	%kmake ARCH=%{target_arch} -s all

	# Start installing stuff
	install -d %{temp_boot}
	install -m 644 System.map %{temp_boot}/System.map-$KernelVer
	install -m 644 .config %{temp_boot}/config-$KernelVer
	xz -c Module.symvers > %{temp_boot}/symvers-$KernelVer.xz

	%ifarch %{arm}
		IMAGE=zImage
	%else
		%ifarch aarch64
			IMAGE=Image.gz
		%else
			IMAGE=bzImage
		%endif
	%endif
	cp -f arch/%{target_arch}/boot/$IMAGE %{temp_boot}/vmlinuz-$KernelVer

	%ifarch %{arm} aarch64
		install -d %{temp_root}%{_libdir}/linux-$KernelVer/
		find arch/%{target_arch}/boot/dts/ -name *.dtb -execdir install -D -m644 {} %{temp_root}%{_libdir}/linux-$KernelVer/{} \;
	%endif

	# modules
	install -d %{temp_modules}/$KernelVer
	%smake ARCH=%{target_arch} INSTALL_MOD_PATH=%{temp_root} KERNELRELEASE=$KernelVer modules_install
}

SaveDevel() {
	devel_flavour=$1

	DevelRoot=/usr/src/kernel-%{kversion}-$devel_flavour-%{buildrpmrel}
	TempDevelRoot=%{temp_root}$DevelRoot

	mkdir -p $TempDevelRoot
	for i in $(find . -name 'Makefile*'); do cp -R --parents $i $TempDevelRoot;done
	for i in $(find . -name 'Kconfig*' -o -name 'Kbuild*'); do cp -R --parents $i $TempDevelRoot;done
	cp -fR include $TempDevelRoot
	cp -fR scripts $TempDevelRoot
	cp -fR kernel/bounds.c $TempDevelRoot/kernel
	cp -fR tools/include $TempDevelRoot/tools/
	# needed for selinux
	cp -R --parents security/selinux/include/*.h $TempDevelRoot
	%ifarch %{arm}
		cp -fR arch/%{target_arch}/tools $TempDevelRoot/arch/%{target_arch}/
		cp -fR arch/%{target_arch}/kernel/signal.h $TempDevelRoot/arch/%{target_arch}/kernel/
	%endif
	%ifarch aarch64
		cp -fR arch/x86/entry/syscalls/syscall_32.tbl $TempDevelRoot/arch/x86/entry/syscalls/
		cp -fR arch/arm64/kernel/vdso/*.{S,sh} $TempDevelRoot/arch/arm64/kernel/vdso/
		cp -fR arch/arm64/kernel/vdso/vgettimeofday.c $TempDevelRoot/arch/arm64/kernel/vdso/
		cp -fR arch/arm64/tools/{cpucaps,gen-cpucaps.awk} $TempDevelRoot/arch/arm64/tools/
		# aarch64 build wants x86 syscall tables
		cp -fR arch/x86/entry/syscalls/syscall_{32,64}.tbl $TempDevelRoot/arch/x86/entry/syscalls/
		cp -fR lib/vdso/gettimeofday.c $TempDevelRoot/lib/vdso/
	%endif
	%ifarch %{ix86} x86_64
		cp -fR arch/x86/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/x86/kernel/
		cp -fR arch/x86/kernel/asm-offsets_{32,64}.c $TempDevelRoot/arch/x86/kernel/
		mkdir -p $TempDevelRoot/arch/x86/kvm/vmx
		cp -fR arch/x86/kvm/vmx/*.h $TempDevelRoot/arch/x86/kvm/vmx/
		cp -fR arch/x86/kvm/*.h $TempDevelRoot/arch/x86/kvm/
		cp -fR arch/x86/lib/insn.c $TempDevelRoot/arch/x86/lib/
		cp -fR arch/x86/purgatory/* $TempDevelRoot/arch/x86/purgatory/
		cp -fR arch/x86/entry/syscalls/syscall* $TempDevelRoot/arch/x86/entry/syscalls/
		cp -fR arch/x86/include $TempDevelRoot/arch/x86/
		cp -fR arch/x86/tools $TempDevelRoot/arch/x86/
	%else
		cp -fR arch/%{target_arch}/kernel/asm-offsets.{c,s} $TempDevelRoot/arch/%{target_arch}/kernel/
		for f in $(find arch/%{target_arch} -name include); do cp -fR --parents $f $TempDevelRoot; done
	%endif
	cp -fR .config Module.symvers $TempDevelRoot

	# Needed for truecrypt build (Danny)
	cp -fR drivers/md/dm.h $TempDevelRoot/drivers/md/

	# needed by include/generated/timeconst.h
	cp -fR kernel/time/timeconst.bc $TempDevelRoot/kernel/time/

	# Needed for lirc_gpio (#39004)
	cp -fR drivers/media/pci/bt8xx/bttv{,p}.h $TempDevelRoot/drivers/media/pci/bt8xx/
	cp -fR drivers/media/pci/bt8xx/bt848.h $TempDevelRoot/drivers/media/pci/bt8xx/
	cp -fR drivers/media/common/btcx-risc.h $TempDevelRoot/drivers/media/common/

	# aufs has a special file needed
	cp -fR fs/aufs/magic.mk $TempDevelRoot/fs/aufs/

	# rtl8812au
	mkdir -p $TempDevelRoot/3rdparty/rtl8812au/hal/phydm/
	cp -fR 3rdparty/rtl8812au/hal/phydm/phydm.mk $TempDevelRoot/3rdparty/rtl8812au/hal/phydm/

	%ifarch x86_64
	# orc unwinder needs theese
		cp -fR tools/build/Build{,.include} $TempDevelRoot/tools/build
		cp -fR tools/build/fixdep.c $TempDevelRoot/tools/build
		cp -fR tools/lib/{rbtree.c,ctype.c,str_error_r.c,string.c} $TempDevelRoot/tools/lib
		cp -fR tools/lib/subcmd/* $TempDevelRoot/tools/lib/subcmd
		cp -fR tools/objtool/* $TempDevelRoot/tools/objtool
		cp -fR tools/scripts/utilities.mak $TempDevelRoot/tools/scripts
		mkdir -p $TempDevelRoot/tools/arch/x86/tools
		cp -fR tools/arch/x86/tools/gen-insn-attr-x86.awk $TempDevelRoot/tools/arch/x86/tools/
		mkdir -p $TempDevelRoot/tools/arch/x86/lib
		cp -fR tools/arch/x86/lib/{inat.c,insn.c,x86-opcode-map.txt} $TempDevelRoot/tools/arch/x86/lib/
		mkdir -p $TempDevelRoot/tools/arch/x86/include/asm
		cp -fR tools/arch/x86/include/asm/{asm.h,emulate_prefix.h,inat.h,inat_types.h,insn.h,nops.h,orc_types.h} $TempDevelRoot/tools/arch/x86/include/asm/
	%endif

	for i in alpha arc avr32 blackfin c6x cris csky frv h8300 hexagon ia64 m32r m68k m68knommu metag microblaze \
		 mips mn10300 nds32 nios2 openrisc parisc powerpc riscv s390 score sh sparc tile unicore32 xtensa; do
		rm -rf $TempDevelRoot/arch/$i
		rm -rf $TempDevelRoot/scripts/dtc/include-prefixes/$i
		rm -rf $TempDevelRoot/tools/arch/$i
	done

	%ifnarch %{arm} aarch64
		rm -rf $TempDevelRoot/arch/arm*
		rm -rf $TempDevelRoot/include/kvm/arm*
		rm -rf $TempDevelRoot/include/soc
		rm -rf $TempDevelRoot/scripts/dtc/include-prefixes/arm*
		rm -rf $TempDevelRoot/tools/arch/arm*
	%endif
	%ifnarch %{ix86} x86_64
		rm -rf $TempDevelRoot/arch/x86
		rm -rf $TempDevelRoot/tools/arch/x86
		# arch/x86/ras/Kconfig is included by drivers/ras/Kconfig
		# and kconfig's source command seems to be evaluated even under a false conditional
		mkdir -p $TempDevelRoot/arch/x86/ras
		cp -fR arch/x86/ras/Kconfig $TempDevelRoot/arch/x86/ras
	%endif

	# Clean the scripts tree, and make sure everything is ok (sanity check)
	# running prepare+scripts (tree was already "prepared" in build)
	pushd $TempDevelRoot >/dev/null
		%smake ARCH=%{target_arch} -s prepare scripts
		%smake ARCH=%{target_arch} -s clean
	popd >/dev/null
	rm -f $TempDevelRoot/.config.old

	# fix permissions
	chmod -R a+rX $TempDevelRoot

	# disable mrproper in -devel rpms
	patch -p1 --fuzz=0 -d $TempDevelRoot -i %{SOURCE2}

	kernel_devel_files=../kernel_devel_files.$devel_flavour


### Create the kernel_devel_files.*
cat > $kernel_devel_files <<EOF
%dir $DevelRoot
%dir $DevelRoot/arch
%dir $DevelRoot/include
$DevelRoot/3rdparty
$DevelRoot/Documentation
%ifarch %{arm} aarch64
$DevelRoot/arch/arm
$DevelRoot/arch/arm64
%endif
$DevelRoot/arch/um
%ifarch %{ix86} x86_64
$DevelRoot/arch/x86
%else
$DevelRoot/arch/x86/ras
%endif
$DevelRoot/block
$DevelRoot/certs
$DevelRoot/crypto
$DevelRoot/drivers
$DevelRoot/fs
$DevelRoot/include/acpi
$DevelRoot/include/asm-generic
$DevelRoot/include/clocksource
$DevelRoot/include/config
$DevelRoot/include/crypto
$DevelRoot/include/drm
$DevelRoot/include/dt-bindings
$DevelRoot/include/generated
$DevelRoot/include/keys
$DevelRoot/include/kunit
$DevelRoot/include/kvm
$DevelRoot/include/linux
$DevelRoot/include/math-emu
$DevelRoot/include/media
$DevelRoot/include/memory
$DevelRoot/include/misc
$DevelRoot/include/net
$DevelRoot/include/pcmcia
$DevelRoot/include/ras
$DevelRoot/include/rdma
$DevelRoot/include/scsi
%ifarch %{arm} aarch64
$DevelRoot/include/soc
%endif
$DevelRoot/include/sound
$DevelRoot/include/target
$DevelRoot/include/trace
$DevelRoot/include/uapi
$DevelRoot/include/vdso/*.h
$DevelRoot/include/video
$DevelRoot/include/xen
$DevelRoot/init
$DevelRoot/ipc
$DevelRoot/kernel
$DevelRoot/lib
$DevelRoot/mm
$DevelRoot/net
$DevelRoot/samples
$DevelRoot/scripts
$DevelRoot/security
$DevelRoot/sound
$DevelRoot/tools
$DevelRoot/usr
$DevelRoot/virt
$DevelRoot/.config
$DevelRoot/Kbuild
$DevelRoot/Kconfig
$DevelRoot/Makefile
$DevelRoot/Module.symvers
$DevelRoot/arch/Kconfig
%doc README.kernel-sources
EOF


### Create -devel Post script on the fly
cat > $kernel_devel_files-post <<EOF
if [ -d /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel} ]; then
	rm -f /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/{build,source}
	ln -sf $DevelRoot /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/build
	ln -sf $DevelRoot /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/source
fi
EOF


### Create -devel Preun script on the fly
cat > $kernel_devel_files-preun <<EOF
if [ -L /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/build ]; then
	rm -f /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/build
fi
if [ -L /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/source ]; then
	rm -f /lib/modules/%{kversion}-$devel_flavour-%{buildrpmrel}/source
fi
exit 0
EOF

### Create -devel Postun script on the fly
cat > $kernel_devel_files-postun <<EOF
rm -rf /usr/src/kernel-%{kversion}-$devel_flavour-%{buildrpmrel} >/dev/null
EOF
}

SaveDebug() {
	debug_flavour=$1

	install -m 644 vmlinux \
	      %{temp_boot}/vmlinux-%{kversion}-$debug_flavour-%{buildrpmrel}
	kernel_debug_files=../kernel_debug_files.$debug_flavour
	echo "%{_bootdir}/vmlinux-%{kversion}-$debug_flavour-%{buildrpmrel}" \
		>> $kernel_debug_files

	find %{temp_modules}/%{kversion}-$debug_flavour-%{buildrpmrel}/kernel \
		-name "*.ko" | \
		%kxargs -I '{}' objcopy --only-keep-debug '{}' '{}'.debug
	find %{temp_modules}/%{kversion}-$debug_flavour-%{buildrpmrel}/kernel \
		-name "*.ko" | %kxargs -I '{}' \
		sh -c 'cd `dirname {}`; \
		       objcopy --add-gnu-debuglink=`basename {}`.debug \
		       --strip-debug `basename {}`'

	pushd %{temp_modules}
	find %{kversion}-$debug_flavour-%{buildrpmrel}/kernel \
		-name "*.ko.debug" > debug_module_list
	popd
	cat %{temp_modules}/debug_module_list | \
		sed 's|\(.*\)|%{_modulesdir}/\1|' >> $kernel_debug_files
	cat %{temp_modules}/debug_module_list | \
		sed 's|\(.*\)|%exclude %{_modulesdir}/\1|' \
		>> ../kernel_exclude_debug_files.$debug_flavour
	rm -f %{temp_modules}/debug_module_list
}

CreateFiles() {
	kernel_flavour=$1

	kernel_files=../kernel_files.$kernel_flavour

ker="vmlinuz"
### Create the kernel_files.*
cat > $kernel_files <<EOF
%{_bootdir}/System.map-%{kversion}-$kernel_flavour-%{buildrpmrel}
%{_bootdir}/symvers-%{kversion}-$kernel_flavour-%{buildrpmrel}.xz
%{_bootdir}/config-%{kversion}-$kernel_flavour-%{buildrpmrel}
%{_bootdir}/$ker-%{kversion}-$kernel_flavour-%{buildrpmrel}
%dir %{_modulesdir}/%{kversion}-$kernel_flavour-%{buildrpmrel}/
%{_modulesdir}/%{kversion}-$kernel_flavour-%{buildrpmrel}/kernel
%{_modulesdir}/%{kversion}-$kernel_flavour-%{buildrpmrel}/modules.*
%doc README.kernel-sources
%ifarch %arm aarch64
%dir %{_libdir}/linux-%{kversion}-$kernel_flavour-%{buildrpmrel}
%{_libdir}/linux-%{kversion}-$kernel_flavour-%{buildrpmrel}/*.dtb
%endif
EOF

%if %build_debug
    cat ../kernel_exclude_debug_files.$kernel_flavour >> $kernel_files
%endif

### Create kernel Posttrans script
cat > $kernel_files-posttrans <<EOF
%if %build_devel
# create kernel-devel symlinks if matching -devel- rpm is installed
if [ -d /usr/src/kernel-%{kversion}-$kernel_flavour-%{buildrpmrel} ]; then
	ln -sf /usr/src/kernel-%{kversion}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-$kernel_flavour-%{buildrpmrel}/build
	ln -sf /usr/src/kernel-%{kversion}-$kernel_flavour-%{buildrpmrel} /lib/modules/%{kversion}-$kernel_flavour-%{buildrpmrel}/source
fi
%endif
if [ -z "$DURING_INSTALL" ] ; then
    if [ -x /usr/sbin/dkms_autoinstaller -a -d /usr/src/kernel-%{kversion}-$kernel_flavour-%{buildrpmrel} ]; then
	/usr/sbin/dkms_autoinstaller start %{kversion}-$kernel_flavour-%{buildrpmrel}
    fi
fi
/sbin/installkernel %{kversion}-$kernel_flavour-%{buildrpmrel}
pushd /boot > /dev/null
if [ -e initrd-%{kversion}-$kernel_flavour-%{buildrpmrel}.img ]; then
	ln -sf vmlinuz-%{kversion}-$kernel_flavour-%{buildrpmrel} vmlinuz-$kernel_flavour
	ln -sf vmlinuz-%{kversion}-$kernel_flavour-%{buildrpmrel} vmlinuz
	ln -sf initrd-%{kversion}-$kernel_flavour-%{buildrpmrel}.img initrd-$kernel_flavour.img
	ln -sf initrd-%{kversion}-$kernel_flavour-%{buildrpmrel}.img initrd.img
fi
popd > /dev/null
EOF

### Create kernel Postun script on the fly
cat > $kernel_files-postun <<EOF
pushd /boot > /dev/null
if [ -f "vmlinuz-%{kversion}-$kernel_flavour-%{buildrpmrel}" ]; then
	echo "The kernel is still installed in postun, probably a reinstall, skipping cleanup." >&2
	exit
fi
if [ -L vmlinuz-$kernel_flavour ]; then
	if [ "$(readlink vmlinuz-$kernel_flavour)" = "vmlinuz-%{kversion}-$kernel_flavour-%{buildrpmrel}" ]; then
		rm -f vmlinuz-$kernel_flavour
	fi
fi
if [ -L initrd-$kernel_flavour.img ]; then
	if [ "$(readlink initrd-$kernel_flavour.img)" = "initrd-%{kversion}-$kernel_flavour-%{buildrpmrel}.img" ]; then
		rm -f initrd-$kernel_flavour.img
	fi
fi
popd > /dev/null
rm -rf /lib/modules/%{kversion}-$kernel_flavour-%{buildrpmrel} >/dev/null
/sbin/kernel_remove_initrd %{kversion}-$kernel_flavour-%{buildrpmrel}
/sbin/installkernel -R %{kversion}-$kernel_flavour-%{buildrpmrel}
if [ -d /var/lib/dkms ]; then
    rm -f /var/lib/dkms/*/kernel-%{kversion}-$devel_flavour-%{buildrpmrel}-%{_target_cpu} >/dev/null
    rm -rf /var/lib/dkms/*/*/%{kversion}-$devel_flavour-%{buildrpmrel} >/dev/null
    rm -f /var/lib/dkms-binary/*/kernel-%{kversion}-$devel_flavour-%{buildrpmrel}-%{_target_cpu} >/dev/null
    rm -rf /var/lib/dkms-binary/*/*/%{kversion}-$devel_flavour-%{buildrpmrel} >/dev/null
fi
EOF
}


CreateKernel() {
	flavour=$1

	PrepareKernel $flavour $flavour-%{buildrpmrel}

	BuildKernel %{kversion}-$flavour-%{buildrpmrel}
	%if %build_devel
		SaveDevel $flavour
	%endif
	%if %build_debug
		SaveDebug $flavour
	%endif
	CreateFiles $flavour
}


###
# DO it...
###


# Create a simulacro of buildroot
rm -rf %{temp_root}
install -d %{temp_root}


# make sure we are in the directory
cd %src_dir

%ifarch %{ix86}
%if %build_desktop586
CreateKernel desktop586
%endif
%endif

%if %build_desktop
CreateKernel desktop
%endif

%if %build_server
CreateKernel server
%endif

# set extraversion to match srpm to get nice version reported by the tools
LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{rpmrel}/" Makefile

# build perf
%if %{build_perf}
# perf
%smake -s -C tools/perf NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 WERROR=0 NO_LIBUNWIND=1 \
	HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_BIONIC=1 NO_JVMTI=1 prefix=%{_prefix} lib=%{_lib} all
%smake -C tools/perf -s prefix=%{_prefix} man
%endif

%if %{build_cpupower}
# cpupower
# make sure version-gen.sh is executable.
chmod +x tools/power/cpupower/utils/version-gen.sh
%make_build -C tools/power/cpupower CPUFREQ_BENCH=false
%endif

# build bpftool
%if %{build_bpftool}
pushd tools/bpf/bpftool
make
popd
%endif

# build libbpf
%if %{build_libbpf}
pushd tools/lib/bpf
make V=1
popd
%endif

# We don't make to repeat the depend code at the install phase
%if %build_source
PrepareKernel "" %{buildrpmrel}custom
%smake ARCH=%{target_arch} -s mrproper
%endif


###
### install
###
%install
install -m 644 %{SOURCE4}  .

cd %src_dir

# Directories definition needed for installing
%define target_source %{buildroot}%{_kerneldir}
%define target_boot %{buildroot}%{_bootdir}
%define target_modules %{buildroot}%{_modulesdir}
%define target_headers %{buildroot}%{_prefix}

# We want to be able to test several times the install part
rm -rf %{buildroot}
cp -a %{temp_root} %{buildroot}

# Create directories infastructure
%if %build_source
install -d %{target_source}

tar cf - . | tar xf - -C %{target_source}
chmod -R a+rX %{target_source}

# we remove all the source files that we don't ship
# first architecture files
for i in alpha arc avr32 blackfin c6x cris csky frv h8300 hexagon ia64 m32r m68k m68knommu metag microblaze \
	 mips nds32 nios2 openrisc parisc powerpc riscv s390 score sh sh64 sparc tile unicore32 v850 xtensa mn10300; do
	rm -rf %{target_source}/arch/$i
	rm -rf %{target_source}/scripts/dtc/include-prefixes/$i
	rm -rf %{target_source}/tools/arch/$i
	rm -rf %{target_source}/tools/testing/selftests/$i
done
%ifnarch %{arm} aarch64
	rm -rf %{target_source}/include/kvm/arm*
	rm -rf %{target_source}/scripts/dtc/include-prefixes/arm*
	rm -rf %{target_source}/tools/arch/arm*
%endif

# other misc files
rm -f %{target_source}/{.clang-format,.config.old,.config.cmd,.lst,.mailmap,.get_maintainer.ignore}
rm -f %{target_source}/{.missing-syscalls.d,.cocciconfig,.gitattributes}
rm -rf %{target_source}/.tmp_depmod/

# more cleaning
pushd %{target_source}
# lots of gitignore files
find -iname ".gitignore" -delete
# clean tools tree
%smake -C tools clean
%smake -C tools/build clean
%smake -C tools/build/feature clean
# dont ship generated vdso.so*
%ifarch aarch64
rm -f arch/arm64/kernel/vdso/vdso.so*
%endif
popd

# nuke last as it gets re-created
rm -f %{target_source}/.cache.mk

#endif %build_source
%endif

# compressing modules
%if %{build_modxz}
find %{target_modules} -name "*.ko" | %kxargs xz -6
%else
find %{target_modules} -name "*.ko" | %kxargs gzip -9
%endif

# We used to have a copy of PrepareKernel here
# Now, we make sure that the thing in the linux dir is what we want it to be
for i in %{target_modules}/*; do
	rm -f $i/build $i/source
done

# sniff, if we compressed all the modules, we change the stamp :(
# we really need the depmod -ae here
pushd %{target_modules}
for i in *; do
	/sbin/depmod -ae -b %{buildroot} -F %{target_boot}/System.map-$i $i
	echo $?
done

for i in *; do
	pushd $i
	echo "Creating modules.description for $i"
	modules=`find . -name "*.ko.[g,x]z"`
	echo $modules | xargs /sbin/modinfo \
	| perl -lne 'print "$name\t$1" if $name && /^description:\s*(.*)/; $name = $1 if m!^filename:\s*(.*)\.k?o!; $name =~ s!.*/!!' > modules.description
	popd
done
popd

# need to set extraversion to match srpm again to avoid rebuild
LC_ALL=C perl -p -i -e "s/^EXTRAVERSION.*/EXTRAVERSION = -%{rpmrel}/" Makefile

# install userspace-headers
%if %{build_uheaders}
%smake ARCH=%{target_arch} headers_install INSTALL_HDR_PATH=%{target_headers}
# for drakx
cp include/linux/pci_ids.h %{target_headers}/include/linux/
%endif

%if %{build_perf}
# perf tool binary and supporting scripts/binaries
%smake -s -C tools/perf V=1 DESTDIR=%{buildroot} NO_PERF_READ_VDSO32=1 NO_PERF_READ_VDSOX32=1 WERROR=0 NO_LIBUNWIND=1 \
	HAVE_CPLUS_DEMANGLE=1 NO_GTK2=1 NO_STRLCPY=1 NO_BIONIC=1 NO_JVMTI=1 prefix=%{_prefix} lib=%{_lib} install

# perf man pages (note: implicit rpm magic compresses them later)
make -C tools/perf V=1 DESTDIR=%{buildroot} prefix=%{_prefix} install-man

# remove perf files we dont ship
rm -rf %{buildroot}/usr/lib/perf/examples
rm -rf %{buildroot}/usr/lib/perf/include/bpf
rm -rf %{buildroot}/usr/include/perf/perf_dlfilter.h
%endif

%if %{build_cpupower}
make -C tools/power/cpupower DESTDIR=%{buildroot} libdir=%{_libdir} mandir=%{_mandir} CPUFREQ_BENCH=false install
rm -f %{buildroot}%{_libdir}/*.{a,la}
%find_lang cpupower
mv cpupower.lang ../
chmod 0755 %{buildroot}%{_libdir}/libcpupower.so*
mkdir -p %{buildroot}%{_unitdir} %{buildroot}%{_sysconfdir}/sysconfig
install -m644 %{SOURCE50} %{buildroot}%{_unitdir}/cpupower.service
install -m644 %{SOURCE51} %{buildroot}%{_sysconfdir}/sysconfig/cpupower
%endif

# install bpftool
%if %{build_bpftool}
pushd tools/bpf/bpftool
make DESTDIR=%{buildroot} prefix=%{_prefix} bash_compdir=%{_sysconfdir}/bash_completion.d/ mandir=%{_mandir} install doc-install
popd
%endif

# install libbpf
%if %{build_libbpf}
pushd tools/lib/bpf
make DESTDIR=%{buildroot} prefix=%{_prefix} libdir=%{_libdir} V=1 install install_headers
popd
%endif

###
### clean
###
%clean
rm -rf %{buildroot}


# We don't want to remove this, the whole reason of its existence is to be
# able to do several rpm --short-circuit -bi for testing install
# phase without repeating compilation phase
#rm -rf %{temp_root}

###
### source and doc file lists
###

%if %build_source
%files -n %{kname}-source-%{buildrel}
%doc %{_kerneldir}/LICENSES
%dir %{_kerneldir}
%dir %{_kerneldir}/arch
%dir %{_kerneldir}/include
%{_kerneldir}/3rdparty
%{_kerneldir}/Documentation
%{_kerneldir}/arch/Kconfig
%{_kerneldir}/arch/arm
%{_kerneldir}/arch/arm64
%{_kerneldir}/arch/um
%{_kerneldir}/arch/x86
%{_kerneldir}/block
%{_kerneldir}/certs
%{_kerneldir}/crypto
%{_kerneldir}/drivers
%{_kerneldir}/fs
%{_kerneldir}/include/acpi
%{_kerneldir}/include/asm-generic
%{_kerneldir}/include/clocksource
%{_kerneldir}/include/crypto
%{_kerneldir}/include/drm
%{_kerneldir}/include/dt-bindings
%{_kerneldir}/include/keys
%{_kerneldir}/include/kunit
%{_kerneldir}/include/kvm
%{_kerneldir}/include/linux
%{_kerneldir}/include/math-emu
%{_kerneldir}/include/media
%{_kerneldir}/include/memory
%{_kerneldir}/include/misc
%{_kerneldir}/include/net
%{_kerneldir}/include/pcmcia
%{_kerneldir}/include/ras
%{_kerneldir}/include/rdma
%{_kerneldir}/include/scsi
%{_kerneldir}/include/soc
%{_kerneldir}/include/sound
%{_kerneldir}/include/target
%{_kerneldir}/include/trace
%{_kerneldir}/include/uapi
%{_kerneldir}/include/vdso/*.h
%{_kerneldir}/include/video
%{_kerneldir}/include/xen
%{_kerneldir}/init
%{_kerneldir}/ipc
%{_kerneldir}/kernel
%{_kerneldir}/lib
%{_kerneldir}/mm
%{_kerneldir}/net
%{_kerneldir}/virt
%{_kerneldir}/samples
%{_kerneldir}/scripts
%{_kerneldir}/security
%{_kerneldir}/sound
%{_kerneldir}/tools
%{_kerneldir}/usr
%{_kerneldir}/COPYING
%{_kerneldir}/CREDITS
%{_kerneldir}/Kbuild
%{_kerneldir}/Kconfig
%{_kerneldir}/MAINTAINERS
%{_kerneldir}/Makefile
%{_kerneldir}/README
%doc README.kernel-sources

%files -n %{kname}-source-latest
%endif

%if %build_doc
%files -n %{kname}-doc
%doc linux-%{tar_ver}/Documentation/*
%endif

%if %build_uheaders
%files -n %{kname}-userspace-headers
%defattr(0644,root,root,0755)
%{_includedir}/asm/
%{_includedir}/asm-generic/
%{_includedir}/drm/
%{_includedir}/linux/
%{_includedir}/misc/
%{_includedir}/mtd/
%{_includedir}/rdma/
%{_includedir}/scsi/
%{_includedir}/sound/
%{_includedir}/video/
%{_includedir}/xen/
%endif

%if %{build_perf}
%files -n perf
%{_bindir}/perf
%{_bindir}/trace
%{_datadir}/perf-core/strace/groups/file
%{_datadir}/perf-core/strace/groups/string
%{_datadir}/doc/perf-tip/tips.txt
%dir %{_libdir}/traceevent
%dir %{_libdir}/traceevent/plugins
%{_libdir}/traceevent/plugins/plugin_*
%dir %{_prefix}/libexec/perf-core
%{_prefix}/libexec/perf-core/*
%{_mandir}/man[1-8]/perf*
%{_sysconfdir}/bash_completion.d/perf
%endif

%if %{build_cpupower}
%files -n cpupower -f cpupower.lang
%config(noreplace) %{_sysconfdir}/sysconfig/cpupower
%{_bindir}/cpupower
%{_datadir}/bash-completion/completions/cpupower
%{_libdir}/libcpupower.so.0
%{_libdir}/libcpupower.so.0.0.1
%{_unitdir}/cpupower.service
%{_mandir}/man[1-8]/cpupower*

%files -n cpupower-devel
%{_libdir}/libcpupower.so
%{_includedir}/cpuidle.h
%{_includedir}/cpufreq.h
%endif

%if %{build_bpftool}
%files -n bpftool
%{_sbindir}/bpftool
%{_sysconfdir}/bash_completion.d/bpftool
%{_mandir}/man8/bpftool-*.8*
%{_mandir}/man8/bpftool.8*
%endif

%if %{build_libbpf}
%files -n %{_lib}bpf0
%{_libdir}/libbpf.so.0
%{_libdir}/libbpf.so.0.8.0

%files -n %{_lib}bpf-devel
%{_libdir}/libbpf.a
%{_libdir}/libbpf.so
%{_libdir}/pkgconfig/libbpf.pc
%{_includedir}/bpf/bpf.h
%{_includedir}/bpf/bpf_core_read.h
%{_includedir}/bpf/bpf_endian.h
%{_includedir}/bpf/bpf_helper_defs.h
%{_includedir}/bpf/bpf_helpers.h
%{_includedir}/bpf/bpf_tracing.h
%{_includedir}/bpf/btf.h
%{_includedir}/bpf/libbpf.h
%{_includedir}/bpf/libbpf_common.h
%{_includedir}/bpf/libbpf_legacy.h
%{_includedir}/bpf/libbpf_version.h
%{_includedir}/bpf/skel_internal.h
%{_includedir}/bpf/xsk.h
%endif


%changelog
* Fri Jul 29 2022 tmb <tmb> 5.18.15-1.mga8
+ Revision: 1872858
- update to 5.18.15
- EDAC/ghes: Set the DIMM label unconditionally
- lkdtm: Disable return thunks in rodata.c
- userfaultfd: provide properly masked address for huge-pages
- x86/bugs: Do not enable IBPB at firmware entry when IBPB is not available
- x86/speculation: Make all RETbleed mitigations 64-bit only
- update devel filelists
- update to 5.18.14
- update to 5.18.13
- add fixes from -stable queue
- update to 5.18.12
- update to 5.18.11
- update to 5.18.10
- update to 5.18.9
  * drop merged patches
- io_uring: ensure that send/sendmsg and recv/recvmsg check sqe->ioprio
- ipv4: ping: fix bind address validity check
- random: quiet urandom warning ratelimit suppression message
- random: schedule mix_interrupt_randomness() less often
- update to 5.18.7
  * drop merged patches
- update to 5.18.5
- arm64: dts: imx8mm-beacon: Enable RTS-CTS on UART3
- arm64: dts: imx8mn-beacon: Enable RTS-CTS on UART3
- init: Initialize noop_backing_dev_info early
- Revert "drm/amd/display: Fix DCN3 B0 DP Alt Mapping"
- update to 5.18.3
  * drop merged patches
- revert: 'arm64: Initialize jump labels before setup_machine_fdt()'
- update to 5.18.2
  * drop merged patches
- block, loop: support partitions without scanning
- arm64: Initialize jump labels before setup_machine_fdt()
- blk-iolatency: Fix inflight count imbalances and IO hangs on offline
- block: Fix potential deadlock in blk_ia_range_sysfs_show()
- drm/amdgpu: add beige goby PCI ID
- drm/amdgpu/cs: make commands with 0 chunks illegal behaviour.
- wifi: mac80211: fix use-after-free in chanctx code
- x86/amd_nb: Add AMD Family 17h A0-AF IDs
- x86/amd_nb: Add Family 19h model 70h-7Fh IDs
- x86/amd_nb: Add Family 19h model 60h-6Fh IDs
- hwmon: (k10temp): Add support for family 17h models A0h-AFh
- hwmon: (k10temp): Add support for family 19h models 70h-7Fh
- hwmon: (k10temp): Add support for family 19h models 60h-6Fh
- revert: "hwmon: (k10temp): Load the driver on models A0h-AFh"
- revert: "x86/amd_nb: Add AMD Family 19h A0-AF IDs"
- hwmon: (k10temp): Load the driver on models A0h-AFh
- KVM: x86: avoid calling x86 emulator without a decoded instruction
- netfilter: nf_tables: disallow non-stateful expression in sets earlier
- x86/amd_nb: Add AMD Family 19h A0-AF IDs
- fix devel filelists
- update to 5.18.1
  * drop merged/obsolete patches
- update defconfigs
- update aufs to 5.18
- libbpf minor is now 8
- 3rdparty/rtl8812au: fix build with kernel 5.18 series
- drop 3rdparty rtl8821ce driver as it conflicts with upstream rtw88 driver
- drop legacy ndiswrapper support
- hugetlb: fix huge_pmd_unshare address update
- mm: lru_cache_disable: use synchronize_rcu_expedited
- mm/page_alloc: always attempt to allocate at least one page during bulk
  allocation
- nfsd: destroy percpu stats counters after reply cache shutdown
- video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup
- update to 5.17.11
- init: add "hostname" kernel parameter
- iommu/amd: Increase timeout waiting for GA log enablement
- KVM: x86/mmu: fix NULL pointer dereference on guest INVPCID
- update to 5.17.9
  * drop merged patches
- update to 5.17.8
- virtio: fix virtio transitional ids
- x86/mm: Fix marking of unused sub-pmd ranges
- Revert "drm/amd/pm: keep the BACO feature enabled for suspend"
- dma-buf: call dma_buf_stats_setup after dmabuf is in valid list
- drm/vmwgfx: Initialize drm_mode_fb_cmd2
- drm/vmwgfx: Disable command buffers on svga3 without gbobjects
- net: atlantic: always deep reset on pm op, fixing up my null deref regression
- procfs: prevent unprivileged processes accessing fdinfo dir
- update to 5.17.7
  * drop merged patches
- update aufs to 5.17.3
- drm/amdgpu: VI: disable ASPM on Intel Alder Lake based systems
- drop obsoleted "x86: Prefer MWAIT over HALT on AMD processors"
- x86: Use HLT in default_idle when idle=nomwait cmdline arg is passed
- x86: Remove vendor checks from prefer_mwait_c1_over_halt
- x86: Fix comment for X86_FEATURE_ZEN
- floppy: disable FDRAWCMD by default
- ACPI: bus: Avoid using CPPC if not supported by firmware
- ahci: Add a generic 'controller2' RAID id
- update to 5.17.5
  * drop merged patches
- add current -stable queue
- fs: fix acl translation
- gpio: Request interrupts after IRQ is initialized
- net: atlantic: invert deep par in pm functions, preventing null derefs
- update to 5.17.4
  * drop merged patches
- drm/amd/display: Only set PSR version when valid
- x86/cpu: Load microcode during restore_processor_state()
- add current -stable queue
- intel_idle: Add Sapphire Rapids and Alder Lake support
- block: add sync_blockdev_range()
- exfat: reduce block requests when zeroing a cluster
- sched/fair: Adjust the allowed NUMA imbalance when SD_NUMA
  spans multiple LLCs
- sched/topology: Remove redundant variable and fix incorrect
  type in build_sched_domains
- update to 5.17.3
  * drop merged/obsolete/broken patches
- add current -stable queue
- rework nokmsboot option for 5.17
- add kernel 5.17 series buildfixes for ndiswrapper, rtl8812au, rtl8821ce
- tick/nohz: Use WARN_ON_ONCE() to prevent console saturation
- x86: Prefer MWAIT over HALT on AMD processors
- libbpf minor is now 7
- update aufs to 5.17
- update defconfigs
- update to 5.16.18
- mm: kfence: fix missing objcg housekeeping for SLAB
- revert: "swiotlb: rework 'fix info leak with DMA_FROM_DEVICE'" as it
  breaks atleast ath9k
- net: ipv6: fix skb_over_panic in __ip6_append_data
- nfc: st21nfca: Fix potential buffer overflows in EVT_TRANSACTION
- update to 5.16.17
  * drop merged patches
- update to 5.16.16
  * drop merged patches
- add current -stable queue
- locking/lockdep: Avoid potential access of invalid memory in lock_class
- mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release skb
- platform/x86: hp-wmi: support omen thermal profile policy v1
- rtw88: add support for Realtek 8821CE RFE Type 6
- update to 5.16.14
- block: check morerequests for multiple_queues in blk_attempt_plug_merge
- iwlwifi: don't advertise TWT support
- update to 5.16.12
  * drop merged patches
- sync with cauldron 5.16.10-2.mga9
- update to 5.15.3
  * drop merged patches
- drm/i915: Add pci ids and uapi for DG1
- drm/i915: Alder Lake S: Remove force_probe requirement
- drm/i915: Add Raptor Lake S support
- libata: fix read log timeout value
- usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform
- xhci: Fix USB 3.1 enumeration issues by increasing roothub
  power-on-good delay
- update to 5.15.2
  * drop merged patches
- rebase mrproper, python3, shuttle-wmi patches
- add kernel 5.15 buildfixes for rtl8812au, rtl8821ce
- update aufs to 5.15
- update defconfigs
- ALSA: hda: fix general protection fault in azx_runtime_idle
- ALSA: hda: Free card instance properly at probe errors
- ALSA: PCM: Fix NULL dereference at mmap checks
- bcache: Revert 'bcache: use bvec_virt'
- fbdev: Prevent probing generic drivers if a FB is already registered
- hwmon: (k10temp) Remove unused definitions
- hwmon: (k10temp) Add support for AMD Family 19h Models 10h-1Fh and A0h-AFh
- iomap: Fix inline extent handling in iomap_readpage
- rtw89: update partition size of firmware header on skb->data
- x86/amd_nb: Add AMD Family 19h Models (10h-1Fh) and (A0h-AFh) PCI IDs
- updaate to 5.14.17
- enable Preasure Stall Information support (mga#29611)
- add current -stable queue
- update to 5.14.16
- update to 5.14.15
- update and re-enable: "x86/PCI: Ignore E820 reservations for bridge
  windows on newer systems" as it is now fixed for 32bit builds
- update to 5.14.14
  * drop merged patches
- x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c
- update to 5.14.13
  * drop merged patches
- x86/fpu: Mask out the invalid MXCSR bits properly
- ACPI: PM: Include alternate AMDI0005 id in special behaviour
- drm/i915/dp: Skip the HW readout of DPCD on disabled encoders
- Revert "proc/wchan: use printk format instead of lookup_symbol_name()"
- update to 5.14.12
  * drop merged/obsolete patches
- add current -stable queue
- fs/ntfs3: Fix integer overflow in ni_fiemap with fiemap_prep()
- fs/ntfs3: Remove unnecessary condition checking from ntfs_file_read_iter
- fs/ntfs3: Remove GPL boilerplates from decompress lib files
- fs/ntfs3: Change how module init/info messages are displayed
- kvm: fix null pointer dereference in page_is_secretmem()
- staging: replace old rtl8188eu with new r8188eu wifi driver from upcoming 5.15
- update rtw89 patchset to v7
- update to 5.14.10
- procfs: do not list TID 0 in /proc/<pid>/task
- update to 5.14.9
- Revert 'USB: bcma: Add a check for devm_gpiod_get'
- update to 5.14.8
- update to 5.14.7
  * drop merged patches
- update to 5.14.5
  * drop merged/obsolete patches
- update filelists
- update defconfigs
- update aufs to 5.14
- update Paragon ntfs3 patchset
- update rtw89 patchset to v6
- drm/amdgpu: Increase HWIP_MAX_INSTANCE to 10
- drm/amdgpu: Fix a deadlock if previous GEM object allocation fails
- PCI: Add AMD GPU multi-function power dependencies
- update to 5.13.16
- add curremt -stable queue
- update to 5.13.15
- Bluetooth: avoid circular locks in sco_sock_connect (CVE-2021-3640)
- Bluetooth: switch to lock_sock in SCO (CVE-2021-3640)
- update to 5.13.14
  * drop merged patches
- add current -stable queue
- btrfs: fix NULL pointer dereference when deleting device by invalid id
- hwmon: (k10temp) Don't show Tdie for all Zen/Zen2/Zen3 CPU/APU
- hwmon: (k10temp): Add additional missing Zen2 and Zen3 APUs
- amdgpu: add additional RDNA2 PCI IDs
- update to 5.13.13
  * drop merged patches
- mm/memory_hotplug: fix potential permanent lru cache disable
- pipe: avoid unnecessary EPOLLET wakeups under normal loads
- pipe: do FASYNC notifications for every pipe IO, not just state changes
- tipc: call tipc_wait_for_connect only when dlen is not 0
- x86/ACPI/State: Optimize C3 entry on AMD CPUs
- x86/efi: Restore Firmware IDT before calling ExitBootServices()
- x86/mm: fix kern_addr_valid to cope with existing but not present entries
- btrfs: prevent rename2 from exchanging a subvol with a directory
  from different parents
- mtd: cfi_cmdset_0002: fix crash when erasing/writing AMD cards
- pipe: avoid unnecessary EPOLLET wakeups under normal loads
- tracing: Apply trace filters on all output channels
- update to 5.13.12
- update to 5.13.11
  * drop merged patches
- update to 5.13.9
  * drop merged/obsolete patches
- update to 5.13.8
  * drop merged patches
- cifs: add missing parsing of backupuid
- cifs: use helpers when parsing uid/gid mount options and validate them
- watchdog: iTCO_wdt: Fix detection of SMI-off case
- Revert "ACPICA: Fix memory leak caused by _CID repair function"
- update to 5.13.7
- add current -stable queue
- platform/x86: amd-pmc: Add support for ACPI ID AMDI0006
- platform/x86: gigabyte-wmi: add support for B550 Aorus Elite V2
- platform/x86: intel-hid: add Alder Lake ACPI device ID
- update to 5.13.6
  * drop merged patches
- Revert "drm/i915: Propagate errors on awaiting already signaled fences"
- Revert "drm/i915/gem: Asynchronous cmdparser"
- Revert: "ACPI: resources: Add checks for ACPI IRQ override"
- scsi/sr: return DISK_EVENT_MEDIA_CHANGE on media_event_code 3 (mga#29262)
- update to 5.13.5
  * drop merged/obsolete patches
- ACPI: PM: s2idle: Use correct revision id
- ACPI: PM: s2idle: Refactor common code
- ACPI: PM: s2idle: Add support for multiple func mask
- ACPI: PM: s2idle: Add support for new Microsoft UUID
- ACPI: PM: Adjust behavior for field problems on AMD systems
- ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007
- hugetlbfs: fix mount mode command line processing
- io_uring: fix early fdput() of file
- ixgbe: Fix packet corruption due to missing DMA sync
- mm: call flush_dcache_page() in memcpy_to_page() and memzero_page()
- mm: fix the deadlock in finish_fault()
- memblock: make for_each_mem_range() traverse MEMBLOCK_HOTPLUG regions
- update to 5.13.4
  * drop merged patches
- update to 5.13.3
  * drop merged patches
- add current -stable queue
- HID: amd_sfh: Extend driver capabilities for multi-generation support
- HID: amd_sfh: Extend ALS support for newer AMD platform
- HID: amd_sfh: Add initial support for HPD sensor
- HID: amd_sfh: Use correct MMIO register for DMA address
- mm/swapfile: use percpu_ref to serialize against concurrent swapoff
- mm/swap: remove confusing checking for non_swap_entry() in swap_ra_info()
- rtl8xxxu: disable interrupt_in transfer for 8188cu and 8192cu
- rtw89: add fixes to improve connectivity
- Revert "usb: renesas-xhci: Fix handling of unknown ROM state" as it
  breaks several devices (5.13.2 regression)
- update to 5.13.2
  * drop merged/obsolete patches
- update mrprper and python3 patches
- update defconfigs
- update filelists
- update aufs to 5.13
- rtw89: add support for 8852AE product id 0xa85a
- vboxsf: Honor excl flag to the dir-inode create op
- vboxsf: Make vboxsf_dir_create() return the handle for the created file
- vboxsf: Add vboxsf_[create|release]_sf_handle() helpers
- vboxsf: Add support for the atomic_open directory-inode op
- update to 5.12.15
  * drop merged patch
- drm/amdgpu: fix bad address translation for sienna_cichlid
- drm/sched: Avoid data corruptions
- net: ip: avoid OOM kills with large UDP sends over loopback
- virtio_net: Remove BUG() to avoid machine dead
- ahci: Add support for Dell S140 and later controllers
- ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 830 G8
- ALSA: hda/realtek: fix mute/micmute LEDs for HP ProBook 445/450/630 G8
- io_uring: add IOPOLL and reserved field checks to IORING_OP_RENAMEAT
- io_uring: add IOPOLL and reserved field checks to IORING_OP_UNLINKAT
- ACPI: PM: Only mark EC GPE for wakeup on Intel systems
- drm/i915/gt: Fix -EDEADLK handling regression
- iwlwifi: Add support for ax201 in Samsung Galaxy Book Flex2 Alpha
- net/ipv4/udp: properly flush normal packet at GRO time
- ntfs: fix validity check for file name attribute
- update to 5.12.14
  * drop merged patches
- ieee80211: add the values of ranging parameters max LTF total field
- wireless: align some HE capabilities with the spec
- wireless: align HE capabilities A-MPDU Length Exponent Extension
- wireless: fix spelling of A-MSDU in HE capabilities
- update rtw89 patchset to v5
- update to 5.12.13
  * drop merged patches
- afs: Fix an IS_ERR() vs NULL check
- fanotify: fix copy_event_to_user() fid error clean up
- kvm: LAPIC: Restore guard to prevent illegal APIC register access
- mm/memory-failure: make sure wait for page writeback in memory_failure
- rtnetlink: Fix regression in bridge VLAN configuration
- update to 5.12.12
  * drop merged patches
- btrfs: zoned: fix negative space_info->bytes_readonly
- cxgb4: fix wrong shift
- update to 5.12.11
  * drop merged patches
- ARM: dts: Add Raspberry Pi 400 support
- drm/nouveau: fix dma_address check for CPU/GPU sync
- thunderbolt: Add support for Intel Alder Lake
- add current -stable queue
- update to 5.12.10
  * drop merged patches
- ACPI: Pass the same capabilities to the _OSC regardless of the query flag
- ALSA: hda: Add AlderLake-M PCI ID
- PCI: Add quirk for AMD Navi14 to disable ATS support
- platform/x86: thinkpad_acpi: Add X1 Carbon Gen 9 second fan support
- proc: Track /proc/<pid>/attr/ opener mm_struct
- update to 5.12.9
  * drop merged patches
- ALSA: timer: Fix master timer notification
- ALSA: hda: update the power_state during the direct-complete
- drm/amdgpu: make sure we unpin the UVD v6 BO
- dmaengine: idxd: Use cpu_feature_enabled()
- x86/apic: Mark _all_ legacy interrupts when IO/APIC is missing
- x86/cpufeatures: Force disable X86_FEATURE_ENQCMD and remove update_pasid()
- x86/fault: Don't send SIGSEGV twice on SEGV_PKUERR
- x86/thermal: Fix LVT thermal setup for SMI delivery mode
- x86/sev: Check SME/SEV support in CPUID first
- update to 5.12.8
  * drop merged patches
- Bluetooth: fix the erroneous flush_work() order
- update to 5.12.7
  * drop merged patches
- bpf: Wrap aux data inside bpf_sanitize_info container
- bpf: Fix mask direction swap upon off reg sign change
- bpf: No need to simulate speculative domain for immediates
- HID: intel-ish-hid: ipc: Add Alder Lake device IDs
- proc: Check /proc/pid/attr/ writes against file opener
- xhci: fix giving back URB with incorrect status regression in 5.12
- xhci: Fix 5.12 regression of missing xHC cache clearing command after a Stall
- update to 5.12.6
  * drop merged patches
- add paragon ntfs read-write driver (v26, lkml)
- dma-buf: fix unintended pin/unpin warnings
- drm/amd/display: Use the correct max downscaling value forvDCN3.x family
- drm/amdgpu: Fix GPU TLB update error when PAGE_SIZE > AMDGPU_PAGE_SIZE
- drm/amdgpu: disable 3DCGCG on picasso/raven1 to avoid compute hang
- drm/amdgpu: update gc golden setting for Navi12
- drm/amdgpu: update sdma golden setting for Navi12
- drm/amdgpu: Don't query CE and UE errors
- drm/radeon: use the dummy page for GART if needed
- hwmon/k10temp: support Zen3 APUs
- x86/amd_nb: add AMD family 19h model 50h PCI ids
- update to 5.12.4
  * drop merged patches
- usb: xhci: Add reset resume quirk for AMD xhci controller
- usb: xhci: Increase timeout for HC halt
- ACPI / EC: Fix media keys not working problem on more Asus laptops
- ACPI: PM: Add ACPI ID of Alder Lake Fan
- platform/x86: ideapad-laptop: fix method name typo
- x86, sched: Fix the AMD CPPC maximum performance value on certain AMD Ryzen generations
- iwlwifi: add new pci id for 6235
- Revert 'irqbypass: do not start cons/prod when failed connect'
- switch to proper fix for CVE-2021-23133:
  * Revert "net/sctp: fix race condition in sctp_destroy_sock"
  * sctp: delay auto_asconf init until binding the first addr
- bluetooth: eliminate the potential race condition when removing the HCI
  controller (CVE-2021-32399)
- net/nfc: fix use-after-free llcp_sock_bind/connect (CVE-2021-23134)
- update to 5.12.3
  * drop merged patches
- update to 5.12.2
  * drop merged patches
- Revert 'mm/gup: check page posion status for coredump'
- tools/power/turbostat: Fix turbostat for AMD Zen CPUs
- drm/amd/display: Reject non-zero src_y and src_x for video planes
- drm/amdgpu: fix concurrent VM flushes on Vega/Navi v2
- drm/amdgpu: fix r initial values
- amdgpu: fix GEM obj leak in amdgpu_display_user_framebuffer_create
- drm/amdgpu: add new MC firmware for Polaris12 32bit ASIC
- drm/amdgpu: Init GFX10_ADDR_CONFIG for VCN v3 in DPG mode.
- ALSA: hda/realtek: reset eapd coeff to default value for alc287
- ACPI: PM: s2idle: Add missing LPS0 functions for AMD
- bpf: Fix leakage of uninitialized bpf stack under speculation
  (CVE-2021-31829)
- bpf: Fix masking negation logic upon negative dst register
- net: qrtr: Avoid potential use after free in MHI send
- drm/i915: Disable runtime power management during shutdown
- mips: Do not include hi and lo in clobber list for R6
- netfilter: conntrack: Make global sysctls readonly in non-init netns
- net: usb: ax88179_178a: initialize local variables before use
- update to 5.12.1
  * drop merged patches
- add rtw88 fixes from upstream
- nitro_enclaves: Fix stale file descriptors on failed usercopy
- exfat: fix erroneous discard when clear cluster bit
- intel_th: pci: Add Alder Lake-M support
- intel_th: pci: Add Rocket Lake CPU support
- iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd()
- md/raid1: properly indicate failure when ending a failed write request
- mmc: block: Issue a cache flush only when it's enabled
- USB: CDC-ACM: fix poison/unpoison imbalance
- regererate defconfigs with mga8 toolchain
- add current kernel to mga8 backports

* Tue Apr 27 2021 tmb <tmb> 5.12.0-2.mga9
+ Revision: 1720154
- update dkms conflicts
- net: hso: fix NULL-deref on disconnect regression
- net/usb/r8152: Support RTL8153C, RTL8153D, RTL8156A, and RTL8156B
- cfg80211: fix locking in netlink owner interface destruction

* Mon Apr 26 2021 tmb <tmb> 5.12.0-1.mga9
+ Revision: 1719926
- arm64: dont ship generated vdso.so is source package
- 3rdparty rtl8812au, rtl8821ce: add fixes for kernel 5.12
- aufs: add upsream fixes for kernel 5.12
- update defconfigs
- rebase aufs patches
- update to 5.12
  * drop merged patches

* Sun Apr 25 2021 tmb <tmb> 5.11.16-4.mga9
+ Revision: 1719660
- add current -stable queue

* Sun Apr 25 2021 tmb <tmb> 5.11.16-3.mga9
+ Revision: 1719565
- rebuild with gcc 11.1

* Wed Apr 21 2021 tmb <tmb> 5.11.16-1.mga9
+ Revision: 1717833
- update to 5.11.16

* Fri Apr 16 2021 tmb <tmb> 5.11.15-1.mga9
+ Revision: 1715980
- update to 5.11.15

* Wed Apr 14 2021 tmb <tmb> 5.11.14-1.mga9
+ Revision: 1715717
- update to 5.11.14
  * drop merged patches
- hwmon: (amd_energy) Add AMD family 19h model 30h x86 match
- hwmon: (amd_energy) Use unified function to read energy data
- hwmon: (amd_energy) Restore visibility of energy counters

* Sun Apr 11 2021 tmb <tmb> 5.11.13-2.mga9
+ Revision: 1714755
- add current -stable queue

* Sat Apr 10 2021 tmb <tmb> 5.11.13-1.mga9
+ Revision: 1714538
- update to 5.11.13
  * drop merged patches

* Fri Apr 09 2021 tmb <tmb> 5.11.12-3.mga9
+ Revision: 1714285
- Revert "iommu/amd: Fix performance counter  initialization"
- iommu/amd: Remove performance counter pre-initialization test
- update to 5.11.13-rc1

* Wed Apr 07 2021 tmb <tmb> 5.11.12-2.mga9
+ Revision: 1713966
- update to 5.11.12
  * drop merged patches

* Mon Apr 05 2021 tmb <tmb> 5.11.11-4.mga9
+ Revision: 1713467
- update to 5.11.12-rc1

* Sat Apr 03 2021 tmb <tmb> 5.11.11-3.mga9
+ Revision: 1713054
- x86/fpu/64: Don't FNINIT in kernel_fpu_begin()
- drop one brokan -stable queue patch
- add current -stable queue fixes

* Fri Apr 02 2021 tmb <tmb> 5.11.11-2.mga9
+ Revision: 1712631
- add current -stable queue
- usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable
- arm: enable OF_OVERLAY
-  ACPI: scan: Fix _STA getting called on devices with unmet dependencies

* Tue Mar 30 2021 tmb <tmb> 5.11.11-1.mga9
+ Revision: 1711868
- update to 5.11.11

* Thu Mar 25 2021 tmb <tmb> 5.11.10-1.mga9
+ Revision: 1709873
- update to 5.11.10

* Wed Mar 24 2021 tmb <tmb> 5.11.9-1.mga9
+ Revision: 1708954
- update to 5.11.9

* Sat Mar 20 2021 tmb <tmb> 5.11.8-1.mga9
+ Revision: 1706025
- updatae to 5.11.8
  * drop merged patches

* Fri Mar 19 2021 tmb <tmb> 5.11.7-2.mga9
+ Revision: 1704984
- add current -stable queue

* Wed Mar 17 2021 tmb <tmb> 5.11.7-1.mga9
+ Revision: 1704153
- update to 5.11.7
  * drop merged patches
- arm(64): enable W1_MASTER_GPIO (mga#28596)

* Sun Mar 14 2021 tmb <tmb> 5.11.6-4.mga9
+ Revision: 1702629
- net: expand textsearch ts_state to fit skb_seq_state
- add more -stable queue fixes

* Sat Mar 13 2021 tmb <tmb> 5.11.6-3.mga9
+ Revision: 1702291
- add more -stable queue fixes

* Fri Mar 12 2021 tmb <tmb> 5.11.6-2.mga9
+ Revision: 1701843
- add current -stable queue

* Thu Mar 11 2021 tmb <tmb> 5.11.6-1.mga9
+ Revision: 1701419
- update to 5.11.6

* Tue Mar 09 2021 tmb <tmb> 5.11.5-1.mga9
+ Revision: 1700834
- update to 5.11.5
  * drop merged patches
- restore crypto AES-NI speedups mistakenly removed in upgrade to 5.11.4

* Sun Mar 07 2021 tmb <tmb> 5.11.4-2.mga9
+ Revision: 1700544
- add current -stable queue
- update dkms conflicts

* Sun Mar 07 2021 tmb <tmb> 5.11.4-1.mga9
+ Revision: 1700453
- update defconfigs
- rebase shuttle-wmi and powerpc tools removal patch
- update rtl8812au driver
- libbpf minor is now 3
- update aufs to v5.11
- drop merged/obsolete patches
- update mrproper and python3 patch
- update to 5.11.4

* Sun Mar 07 2021 tmb <tmb> 5.10.21-1.mga9
+ Revision: 1700396
- update to 5.10.21
  * drop merged patches

* Fri Mar 05 2021 tmb <tmb> 5.10.20-2.mga9
+ Revision: 1699795
- swap: fix swapfile read/write offset
- xen/gnttab: handle p2m update errors on a per-slot basis (XSA-367)
- xen-netback: respect gnttab_map_refs()'s return value (XSA-367)
- xen: fix p2m size in dom0 for disabled memory hotplug case (XSA-369)
- tty: clean up legacy leftovers from n_tty line discipline
- tty: teach n_tty line discipline about the new "cookie continuations"
- tty: teach the n_tty ICANON case about the new "cookie continuations" too
- x86_64 server: enable NUMA balancing
- x86_64 server: support 512 cores/threads
- x86_64-server config: make CONNECTOR builtin to enable PROC_EVENTS (mga#28312)

* Thu Mar 04 2021 tmb <tmb> 5.10.20-1.mga9
+ Revision: 1697958
- tty: fix up iterate_tty_read() EOVERFLOW handling
- tty: fix up hung_up_tty_read() conversion
- net: usb: qmi_wwan: support ZTE P685M modem
- update to 5.10.20
  * drop merged patches
- Input: elan_i2c - add new trackpoint report type 0x5F
- Input: elantech - fix protocol errors for some trackpoints in

* Fri Feb 26 2021 tmb <tmb> 5.10.19-1.mga9
+ Revision: 1692390
- mm/vmscan: restore zone_reclaim_mode ABI
- x86: fix seq_file iteration for pat/memtype.c
- update to 5.10.19
  * drop merged patch
- staging/rtl8723bs: sync with 5.12-rc1
- media: uvcvideo: Allow entities with no pads

* Thu Feb 25 2021 tmb <tmb> 5.10.18-2.mga9
+ Revision: 1690161
- fix vendor id in Lexar nvme quirk
- nvme: drop duplicated ids from amazon dma48 quirk list
- nvme: add 48-bit DMA address quirk for Amazon NVMe controllers
- nvme-pci: add the DISABLE_WRITE_ZEROES quirk for a SPCC device
- nvme: Add quirks for Lexar 256GB SSD (pterjan, mga#28417)
- drop "revert 'Bluetooth: btusb: Add Qualcomm Bluetooth SoC WCN6855
  support' (mga#27910)"
- Bluetooth: btusb: fix for Qualcomm Bluetooth adapters that stopped working
  due to not finding (unneeded) ROME firmware (real fix for mga#27910)
- update to 5.10.18
- enable ACPI_EC_DEBUGFS (mga#28415)

* Sat Feb 13 2021 tmb <tmb> 5.10.16-1.mga8
+ Revision: 1675300
- bpftool: enable libcap support
- tracing: Check length before giving out the filter buffer
- ALSA: hda: Add another CometLake-H PCI ID
- Revert 'drm/amd/display: Update NV1x SR latency values'
- drm/nouveau/kms: handle mDP connectors
- drm/i915/gt: One more flush for Baytrail clear residuals
- drm/i915/gt: Flush before changing register state
- drm/i915/gt: Correct surface base address for renderclear
- update to 5.10.16
  * drop merged patches
- rtw88: 8821c: add RFE type 2 support
- update rtw89 patchset to v3
- ensure new theme ends up in initrd (mga#28349)
- disable ACPI_DEBUG for release

* Sun Feb 07 2021 tmb <tmb> 5.10.14-1.mga8
+ Revision: 1674984
- make CONNECTOR builtin to enable PROC_EVENTS (mga#28312)
- update to 5.10.14
  * drop merged patches
- drm/amdgpu: set default value of noretry to 1 for vega10
- drm/amdgpu: default noretry=0 for navi1x and newer

* Sat Feb 06 2021 tmb <tmb> 5.10.13-2.mga8
+ Revision: 1674923
- drm/amd/display: Revert "Fix EDID parsing after resume from suspend"
- drm/amdgpu: fix the issue that retry constantly once the buffer is oversize
- drm/amdkfd: fix null pointer panic while free buffer in kfd
- mm: thp: fix MADV_REMOVE deadlock on shmem THP
- enable ACPI_DEBUG support

* Fri Feb 05 2021 tmb <tmb> 5.10.13-1.mga8
+ Revision: 1674910
- add current -stable queue
- update to 5.10.13
  * drop merged patches

* Tue Feb 02 2021 tmb <tmb> 5.10.12-3.mga8
+ Revision: 1674444
- ACPI: sysfs: Prefer "compatible" modalias
- blk-mq: test QUEUE_FLAG_HCTX_ACTIVE for sbitmap_shared in hctx_may_queue
- Revert "block: simplify set_init_blocksize" to regain lost performance
- Revert "drm/amdgpu/swsmu: drop set_fan_speed_percent (v2)"
- wext: fix NULL-ptr-dereference with cfg80211's lack of commit()
- x86/entry: Emit a symbol for register restoring thunk

* Sat Jan 30 2021 tmb <tmb> 5.10.12-2.mga8
+ Revision: 1674117
- switch Amd SI and CIK from radeon to amdgpu by default
- tty: avoid using vfs_iocb_iter_write() for redirected console writes

* Sat Jan 30 2021 tmb <tmb> 5.10.12-1.mga8
+ Revision: 1674058
- update to 5.10.12
- nbd: freeze the queue while we're adding connections
- ALSA: hda/via: Apply the workaround generically for Clevo machines
- amdgpu: Add Missing Sienna Cichlid DID

* Wed Jan 27 2021 tmb <tmb> 5.10.11-1.mga8
+ Revision: 1673685
- update to 5.10.11
- iwlwifi: provide gso_type to GSO packets

* Sat Jan 23 2021 tmb <tmb> 5.10.10-1.mga8
+ Revision: 1672990
- update to 5.10.10
  * drop merged patches
- drm/gpu/nouveau/dispnv50: Restore pushing of all data
- crypto: arm64/sha - add missing module aliases

* Thu Jan 21 2021 tmb <tmb> 5.10.9-3.mga8
+ Revision: 1672767
- add current -stable queue
- x86/mmx: Use KFPU_387 for MMX string operations
- ASoC: AMD Renoir - refine DMI entries for some Lenovo products
- crypto: X.509: Fix crash caused by NULL pointer

* Wed Jan 20 2021 tmb <tmb> 5.10.9-2.mga8
+ Revision: 1672665
- pipe: allow sendfile() destination with splice_write
- Revert "kconfig: remove 'kvmconfig' and 'xenconfig' shorthands"

* Tue Jan 19 2021 tmb <tmb> 5.10.9-1.mga8
+ Revision: 1672569
- ALSA: hda: Add AlderLake-P PCI ID and HDMI codec vid
- ALSA: hda: Add Cometlake-R PCI ID
- fix and re-enamble 3rdparty rtl8821ce driver (mga#28150)
- update to 5.10.9
  * drop merged patches
- re-add conflicts on mageia-gfxboot-theme to get new theme in initrd
- update microcode conflicts
- update firmware conflicts
- update btrfs-progs conflict

* Mon Jan 18 2021 tmb <tmb> 5.10.8-2.mga8
+ Revision: 1672254
- simplify mrpoper patch and fix it up to really disable mrproper, oldconfig,
  and prepare targets on kernel-devel rpms as they are already fully prepared
  at rpm build time. This also ensures flex and bison are not needed at dkms
  install time.

* Sun Jan 17 2021 tmb <tmb> 5.10.8-1.mga8
+ Revision: 1672150
- update to 5.10.8
- fix up mrproper patch to not cause errors during dkms installs
- ovl: use a dedicated semaphore for dir upperfile caching
- crypto: aesni - Use TEST %%reg,%%reg instead of CMP $0,%%reg
- crypto: aesni - implement support for cts(cbc(aes))
- crypto: x86/aes-ni-xts - use direct calls to and 4-way stride
- crypto: x86/aes-ni-xts - rewrite and drop indirections via glue helper
- drm/amdgpu: fix DRM_INFO flood if display core is not supported
- drm/amdgpu: add green_sardine device id (v2)
- drm/amdgpu: add new device id for Renior
- drm/i915/gt: Limit VFE threads based on GT
- drm/i915: Allow the sysadmin to override security mitigations
- ext4: use IS_ERR instead of IS_ERR_OR_NULL and set inode null when IS_ERR
- ext4: fix wrong list_splice in ext4_fc_cleanup
- ext4: fix bug for rename with RENAME_WHITEOUT
- nouveau: add Ampere (RTX 3xxx) modesetting support

* Tue Jan 12 2021 tmb <tmb> 5.10.7-1.mga8
+ Revision: 1671446
- iwlwifi: dbg: Don't touch the tlv data
- iwlwifi: dbg: Mark ucode tlv data as const
- update to 5.19.7

* Sat Jan 09 2021 tmb <tmb> 5.10.6-1.mga8
+ Revision: 1670102
- btrfs: prevent NULL pointer dereference in extent_io_tree_panic
- btrfs: reloc: fix wrong file extent type check to avoid false ENOENT
- update to 5.10.6 final
- mmc: sdhci-iproc: Add ACPI bindings for the rpi4

* Fri Jan 08 2021 tmb <tmb> 5.10.5-2.mga8
+ Revision: 1669872
- update to 5.10.6-rc1
- revert 'module: delay kobject uevent until after module init call' (mga #28035)
- drop radix local lock revert that was needed for older nvidia390 drivers
- update dkms-nvidia* conflicts
- revert: 'drm/amd/display: Fixed Intermittent blue screen on OLED panel' (fdo #1907)

* Wed Jan 06 2021 tmb <tmb> 5.10.5-1.mga8
+ Revision: 1669256
- update to 5.10.5 final
- restore and re-enable aufs support as upstream is active again
- Revert 'sd: use bdev_check_media_change' (mga #27877)
- revert 'drm/amd/display: Fix memory leaks in S3 resume' (bko #211033)

* Mon Jan 04 2021 tmb <tmb> 5.10.4-4.mga8
+ Revision: 1668848
- btrfs: Use the normal writeback path for flushing delalloc
- Bluetooth: Fix attempting to set RPA timeout when unsupported
- update to 5.10.5-rc1
- HID: sfh: fix address space confusion
- rtw89: add missing MODULE_DEVICE_TABLE()
- rtw89: update patchset to v2, enable debug support

* Sun Jan 03 2021 tmb <tmb> 5.10.4-3.mga8
+ Revision: 1668468
- add rtw89 (802.11ax) support
- drop aufs support as upstream has stalled on 5.7

* Thu Dec 31 2020 tmb <tmb> 5.10.4-2.mga8
+ Revision: 1667433
- add current -stable queue

* Wed Dec 30 2020 tmb <tmb> 5.10.4-1.mga8
+ Revision: 1665637
- update to 5.10.4 final
- lib/genalloc: fix the overflow when size is too big
- iwlwifi: avoid endless HW errors at assert time

* Mon Dec 28 2020 tmb <tmb> 5.10.3-2.mga8
+ Revision: 1664503
- add current -stable queue
- Revert 'Bluetooth: btusb: Add Qualcomm Bluetooth SoC WCN6855 support' (mga#27910)
- proc mountinfo: make splice available again

* Sat Dec 26 2020 tmb <tmb> 5.10.3-1.mga8
+ Revision: 1663959
- update to 5.10.3
- ALSA: hda/realtek - Fix speaker volume control on Lenovo C940
- hwmon/k10temp: add Ryzen 5xxx (zen3) support
- hwmon: (k10temp) Remove broken support for displaying voltage and
  current on Zen CPUs
- qconf: switch to qt5
- enable missing DRM_VMWGFX_FBCON (noted by martinw)

* Mon Dec 21 2020 tmb <tmb> 5.10.2-1.mga8
+ Revision: 1662525
- update to 5.10.2
- drm/amd/display: Add get_dig_frontend implementation for DCEx
- KVM: x86: reinstate vendor-agnostic check on SPEC_CTRL cpuid bits
- enable MMC_SDHCI_AM654, PHY_INTEL_LGM_COMBO, PHY_INTEL_LGM_EMMC, MMC_HSQ

* Wed Dec 16 2020 tmb <tmb> 5.10.1-2.mga8
+ Revision: 1658108
- ptrace: Prevent kernel-infoleak in ptrace_get_syscall_info()
- drm/amdgpu: fix the issue that apu has no smu firmware binary
- drm/amd/amdgpu: set the default value of noretry to 1 for some dGPUs
- drm/amdgpu: protect eeprom update from GPU reset
- drm/amd/amdgpu: enable noretry for Sienna_Cichlid/Navy_Flounder
- drm/amdgpu: disable rom clock gating support for APUs
- drm/amdgpu: increase reserved VRAM size to 8MB
- fix and re-enable 3rdparty rtl8812au driver (mga#27841)

* Mon Dec 14 2020 tmb <tmb> 5.10.1-1.mga8
+ Revision: 1657449
- update to 5.10.1
- drop obolete perf binutils hack
- revert: 'task_work: Use TIF_NOTIFY_SIGNAL if available' again, needs more work
- task_work: Use TIF_NOTIFY_SIGNAL if available

* Mon Dec 14 2020 tmb <tmb> 5.10.0-1.mga8
+ Revision: 1656897
- update to 5.10 final
- PCI: Decode PCIe 64 GT/s link speed

* Thu Dec 10 2020 tmb <tmb> 5.10.0-0.rc7.3.mga8
+ Revision: 1655102
- add more post -rc7 fixes from upstream

* Wed Dec 09 2020 tmb <tmb> 5.10.0-0.rc7.2.mga8
+ Revision: 1654873
- add post -rc7 fixes from upstream
- hwmon: corsair-psu: drop assumed support for AXi PSUs, most of them dont have hid header

* Mon Dec 07 2020 tmb <tmb> 5.10.0-0.rc7.1.mga8
+ Revision: 1654051
- update to 5.10-rc7
  * drop merged patches

* Thu Dec 03 2020 tmb <tmb> 5.10.0-0.rc6.1.mga8
+ Revision: 1652305
- add upstream post -rc6 fixes
- arch/arm64/kernel/module.lds is removed in 5.10
- libbpf minor is now 2
- update python3 patch
- disable binutils 2.34 hack
- fix up perf build
- fix up rc versioning
- disable broken aufs and 3rdparty rtl8821ce/rtl8812au for now
- update defcofigs
- rebase aufs, radix and SFH patch
- update to 5.10-rc6

* Wed Dec 02 2020 tmb <tmb> 5.9.12-1.mga8
+ Revision: 1651555
- update to 5.9.12
  * drop merged patches

* Fri Nov 27 2020 tmb <tmb> 5.9.11-3.mga8
+ Revision: 1649783
- update defconfigs
- rtw88: enable 8821CE support
- switch from 3rdparty rtl8723de to the in-tree rtw88_8723de driver
- desktop586 config: enable NDSIWRAPPER
- move r8822be module alias to correct module
- disable LEDS_LP55XX_COMMON and deps again so FW_LOADER_USER_HELPER
  can be disabled again as intended
- x86/mce: Do not overwrite no_way_out if mce_end() fails
- add more patches from -stable queue
- document adding stable-queeue patches in spec
- hwmon: corsair-psu: update supported deveices
- ALSA: hda/realtek - Add new codec supported for ALC897
- hwmon: (amd_energy) Add AMD family 19h model 01h x86 match

* Thu Nov 26 2020 tmb <tmb> 5.9.11-2.mga8
+ Revision: 1649559
- add current -stable queue

* Tue Nov 24 2020 tv <tv> 5.9.11-1.mga8
+ Revision: 1648994
- 5.9.11
+ tmb <tmb>
- iwlwifi: add missing id for AX210 model 0024

* Sun Nov 22 2020 tmb <tmb> 5.9.10-1.mga8
+ Revision: 1648517
- update to 5.9.10

* Sat Nov 21 2020 tmb <tmb> 5.9.9-2.mga8
+ Revision: 1648241
- add current -stable queue
- hwmon: add Corsair PSU HID controller driver
- thermal: intel_pch_thermal: Add PCI ids for Lewisburg PCH
- re-add fixed AMD Sensor Fusion Hub driver (mga#27573)

* Thu Nov 19 2020 tmb <tmb> 5.9.9-1.mga8
+ Revision: 1647380
- update to 5.9.9
- enable r8169 on arm(64) (mga#27395)

* Thu Nov 12 2020 tv <tv> 5.9.8-1.mga8
+ Revision: 1644793
- 5.9.8

* Thu Nov 05 2020 tv <tv> 5.9.6-1.mga8
+ Revision: 1642937
- 5.9.6
- 5.9.5

* Thu Nov 05 2020 tv <tv> 5.9.4-1.mga8
+ Revision: 1642770
- 5.9.4

* Tue Nov 03 2020 ngompa <ngompa> 5.9.3-2.mga8
+ Revision: 1642183
- Remove patch reverting changes to kernel taint behavior
- Update Mageia version conditionals to use mageia macro

* Sun Nov 01 2020 tv <tv> 5.9.3-1.mga8
+ Revision: 1641354
- 5.9.3
- enable CONFIG_NFSD_V4_2_INTER_SSC
+ ghibo <ghibo>
- update nvidia i2c patch according to bug https://bugzilla.kernel.org/show_bug.cgi?id=206653#c19

* Thu Oct 29 2020 tv <tv> 5.9.2-1.mga8
+ Revision: 1640526
- 5.9.2

* Sat Oct 17 2020 ghibo <ghibo> 5.9.1-1.mga8
+ Revision: 1636555
- Update to release 5.9.1.
- Add stable-queue as of 2020-10-17.
- Further attempts at reducing zstd i586 memory footprint

* Thu Oct 15 2020 tv <tv> 5.9.0-2.mga8
+ Revision: 1636263
- switch back i586 from zstd to xz due to zstd memory exhaust
- lower zstd compression level on ix86 in order to try to get it to build on BS
- backport "PM: hibernate: Batch hibernate and resume IO requests" from 5.10
- switch i386 from XZ to ZSTD (the slower cpus were getting the slower compressor)
+ ghibo <ghibo>
- Drop further compression level to 3 (default) for i586
- Add a temporary workaround for bug #27421 for getting nvidia390 modules building.
- Merge a patch for CVE-2020-16119.

* Wed Oct 14 2020 tv <tv> 5.9.0-1.mga8
+ Revision: 1635816
- libbpf is now 0.1.0
- restore AUFS options as set in 5.8 on *x86*
  (but AUFS_XATTR on x86_64-desktop which was not consistent with other arches)
- restore AUFS options as set in 5.8 on arm
- fix Kconfig issues within 3rdparty patches
- drop mga5 conflicts
- rediff aufs5 patch
- switch i386-desktop back from CONFIG_ZSTD to CONFIG_XZ due to:
  "zstd: error 11 : Allocation error : not enough memory"
- 5.9.0

* Wed Oct 07 2020 tv <tv> 5.8.14-1.mga8
+ Revision: 1632554
- drop merged patch
- 5.8.14

* Fri Oct 02 2020 tv <tv> 5.8.13-1.mga8
+ Revision: 1631902
- 5.8.12

* Sun Sep 27 2020 tv <tv> 5.8.12-1.mga8
+ Revision: 1630786
- 5.8.12

* Sat Sep 26 2020 pterjan <pterjan> 5.8.11-2.mga8
+ Revision: 1630627
- Enable libbpf on armv7hl

* Wed Sep 23 2020 ghibo <ghibo> 5.8.11-1.mga8
+ Revision: 1629627
- Update to release 5.8.11.
- Merge FC patch for CVE-2020-25211.
- Merge FC patch for Inspur Advantech PCI IDs.
- Merge FC patch for fixing on AHCI Vulcan PCI (aarch64).
- Merge FC patch for fixing NFS listing from older kernel NFS servers.
- Merge FC patch for touchpad detecting.

* Thu Sep 17 2020 tv <tv> 5.8.10-1.mga8
+ Revision: 1627731
- 5.8.10
- fix return code for mdadm/parted when deleting partitions
+ ghibo <ghibo>
- Add doc about wiki page to the spec file

* Sat Sep 12 2020 ghibo <ghibo> 5.8.9-1.mga8
+ Revision: 1625294
- Update to release 5.8.9
- Enable CONFIG_DRM_LOAD_EDID_FIRMWARE for x86_64 and i386 (fix for bug #27261)

* Thu Sep 10 2020 tv <tv> 5.8.8-1.mga8
+ Revision: 1624065
- 5.8.8
+ ghibo <ghibo>
- Add HID Alps module (for bug #27254)

* Mon Sep 07 2020 ghibo <ghibo> 5.8.7-1.mga8
+ Revision: 1623162
- Update to release 5.8.7.
- Add stable-queue as of 2020-09-07.
+ tv <tv>
- drop patch for vbox-6.1.12

* Thu Sep 03 2020 tv <tv> 5.8.6-1.mga8
+ Revision: 1621407
- 5.8.6

* Fri Aug 28 2020 ghibo <ghibo> 5.8.5-2.mga8
+ Revision: 1619444
- Add temporary patch to fix nvidia390 module building.
- Add patch to fix g200e crash under wayland.
- Stable-queue as of 2020-08-28.
- Add two patches for fixing typos in vmwgfx.

* Thu Aug 27 2020 tv <tv> 5.8.5-1.mga8
+ Revision: 1619275
- enable BLK_INLINE_ENCRYPTION
- 5.8.5

* Wed Aug 26 2020 tv <tv> 5.8.4-1.mga8
+ Revision: 1619152
- 5.8.4

* Fri Aug 21 2020 tv <tv> 5.8.3-1.mga8
+ Revision: 1617716
- 5.8.3

* Wed Aug 19 2020 neoclust <neoclust> 5.8.2-2.mga8
+ Revision: 1616345
- Add patch to change some i2c-nvidia-gpu error messages into informations

* Wed Aug 19 2020 tv <tv> 5.8.2-1.mga8
+ Revision: 1615940
- 5.8.2
+ pterjan <pterjan>
- Fix AUFS patch

* Tue Aug 18 2020 neoclust <neoclust> 5.8.1-5.mga8
+ Revision: 1615317
- Enable rtl8812au again

* Mon Aug 17 2020 neoclust <neoclust> 5.8.1-4.mga8
+ Revision: 1614542
- Revert commit r1612956 and use upstream patch

* Mon Aug 17 2020 neoclust <neoclust> 5.8.1-3.mga8
+ Revision: 1614540
- Add kernel 5.8 support for the rtl8723de driver
+ pterjan <pterjan>
- Skip cleanup if the kernel is still there in postun, the package is probably being replaced by itself. This should prevent dnf reinstall causing all modules to be deleted.

* Wed Aug 12 2020 ghibo <ghibo> 5.8.1-2.mga8
+ Revision: 1613700
- Add patch for virtualbox

* Wed Aug 12 2020 ghibo <ghibo> 5.8.1-1.mga8
+ Revision: 1613664
- Update to release 5.8.1.
- Add stable-queue as of 2020-08-12.
- Fix path in patch 3rd-rtl8821ce-5.8-fix.patch that was not applying.
- Add patch to try bfq instead of mq-deadline as default I/O scheduler.
+ tv <tv>
- fix & reenable rtl8821ce

* Tue Aug 11 2020 tv <tv> 5.8.0-2.mga8
+ Revision: 1613375
- libbpf major was bumped
- disable RTL8812AU due to build errors
- disable rtl8723de due to build errors
- add URL for rtl8821ce
- disable CONFIG_RTL8821CE due to build error
- disable aufs due to build errors
- fix SPDX-License-Identifier for aufs
- fix redefined struct sha256_state in realtek drivers
- adjust ndiswrapper for vmalloc() changes
- rediff disable-mrproper-in-devel-rpms.patch
- delete removed patches...
- update config files...
- remove "exit 1" wrongly added by shlomish...
+ pterjan <pterjan>
- Disable ndisrapper, it is not trivial to get it to work on 5.8
- Add back aufs
+ neoclust <neoclust>
- Disable aufs, will be added back tomorow
- New version 5.8.0
+ ghibo <ghibo>
- Bump release
- Add stable-queue as of 2020-08-01 (fix double free in drm among among others).
- Build with newer gcc 10.2.

* Sat Aug 01 2020 tv <tv> 5.7.12-1.mga8
+ Revision: 1610110
- 5.7.12
+ shlomif <shlomif>
- New version 5.7.11
- New version 5.7.10

* Thu Jul 16 2020 tv <tv> 5.7.9-1.mga8
+ Revision: 1606521
- 5.7.9

* Thu Jul 09 2020 tv <tv> 5.7.8-1.mga8
+ Revision: 1603500
- 5.7.8

* Sat Jul 04 2020 tv <tv> 5.7.7-1.mga8
+ Revision: 1601918
- drop the Amd SFH driver for now (several issues including null pointer deref)
- 5.7.7
+ pterjan <pterjan>
- Add a lot of useful stuff to arm config
- Enable CONFIG_SND_SUN50I_CODEC_ANALOG on arm64 (pine64)

* Sat Jun 27 2020 tv <tv> 5.7.6-1.mga8
+ Revision: 1599679
- 5.7.6
+ pterjan <pterjan>
- Enable EFI stubs on arm (and update all defconfigs)

* Wed Jun 24 2020 tv <tv> 5.7.5-1.mga8
+ Revision: 1599116
- 5.7.5

* Sun Jun 21 2020 neoclust <neoclust> 5.7.4-1.mga8
+ Revision: 1598245
- New version 5.7.4

* Thu Jun 18 2020 tv <tv> 5.7.3-2.mga8
+ Revision: 1596409
- 5.7.3

* Wed Jun 17 2020 pterjan <pterjan> 5.7.2-2.mga8
+ Revision: 1595178
- Rebuild for perl-5.32

* Sat Jun 13 2020 tv <tv> 5.7.2-1.mga8
+ Revision: 1593083
- 5.7.2

* Mon Jun 08 2020 tv <tv> 5.7.1-1.mga8
+ Revision: 1591084
- 5.7.1
- libbpf is now 0.0.8
- fix filelist
- fix "ERROR: ambiguous python shebang"
- add lib/rbtree.c for objtool
+ pterjan <pterjan>
- Update defconfigs
+ neoclust <neoclust>
- New version 5.7

* Fri May 29 2020 pterjan <pterjan> 5.6.15-1.mga8
+ Revision: 1588968
- update to 5.6.15
  * drop merged patches
- Enable Mellanox drivers on arm64-server

* Thu May 21 2020 tmb <tmb> 5.6.14-2.mga8
+ Revision: 1586576
- BR: diffutils
- pipe: Fix pipe_full() test in opipe_prep()
- ovl: potential crash in ovl_fid_to_fh()
- ACPI: EC: PM: Avoid flushing EC work when EC GPE is inactive
- virt: vbox: Fix VBGL_IOCTL_VMMDEV_REQUEST_BIG and _LOG req numbers
  to match upstream
- virt: vbox: Fix guest capabilities mask check
- virt: vbox: Rename guest_caps struct members to set_guest_caps
- virt: vbox: Add vbg_set_host_capabilities() helper function
- virt: vbox: Add support for the new VBG_IOCTL_ACQUIRE_GUEST_CAPABILITIES
  ioctl
- virt: vbox: Add a few new vmmdev request types to the userspace whitelist
- virt: vbox: Log unknown ioctl requests as error
- virt: vbox: Fix some comments which talk about the session spinlock

* Wed May 20 2020 tmb <tmb> 5.6.14-1.mga8
+ Revision: 1586441
- KVM: x86: only do L1TF workaround on affected processors
- update to 5.6.14
  * drop merged patches

* Mon May 18 2020 tmb <tmb> 5.6.13-5.mga8
+ Revision: 1585752
- add more -stable queue fixes

* Sat May 16 2020 tmb <tmb> 5.6.13-3.mga8
+ Revision: 1584729
- x86/amd_nb: add AMD family 17h model 60h PCI IDs
- hwmon: (k10temp) Add AMD family 17h model 60h PCI match
- EDAC/amd64: Add AMD family 17h model 60h PCI IDs
- add current -stable -net queue

* Sat May 16 2020 tmb <tmb> 5.6.13-2.mga8
+ Revision: 1584215
- add current -stable queue
- x86: Fix early boot crash on gcc-10, third try

* Thu May 14 2020 tmb <tmb> 5.6.13-1.mga8
+ Revision: 1583726
- ACPI: EC: PM: Avoid premature returns from acpi_s2idle_wake()
- fork: prevent accidental access to clone3 features
- gcc-common.h: Update for GCC 10
- drop_monitor: work around gcc-10 stringop-overflow warning
- gcc-10 warnings: fix low-hanging fruit
- Stop the ad-hoc games with -Wno-maybe-initialized
- gcc-10: disable 'zero-length-bounds' warning for now
- gcc-10: disable 'array-bounds' warning for now
- gcc-10: disable 'stringop-overflow' warning for now
- gcc-10: disable 'restrict' warning for now
- gcc-10: mark more functions __init to avoid section mismatch warnings
- update to 5.6.13
  * drop merged patches

* Sun May 10 2020 tmb <tmb> 5.6.12-1.mga8
+ Revision: 1582607
- update to 5.6.12
  * drop merged patches

* Thu May 07 2020 tmb <tmb> 5.6.11-4.mga8
+ Revision: 1581575
- rebuild with gcc 10.1 final
- Makefile: disallow data races on gcc-10 as well
- add current -stable queue
- tracing: Add a vmalloc_sync_mappings() for safe measure
- x86/cpu/amd: Make erratum #1054 a legacy erratum
- update ndiswrapper to 1.63
- vhost: vsock: kick send_pkt worker once device is started

* Wed May 06 2020 tmb <tmb> 5.6.11-2.mga8
+ Revision: 1581006
- rebuild with gcc 10.1

* Wed May 06 2020 tmb <tmb> 5.6.11-1.mga8
+ Revision: 1580971
- update to 5.6.11
  * drop merged patches

* Tue May 05 2020 tmb <tmb> 5.6.10-4.mga8
+ Revision: 1580223
- perf cs-etm: Move definiton of traceid_list

* Mon May 04 2020 tmb <tmb> 5.6.10-3.mga8
+ Revision: 1580040
- temporarily disable perf build on arm & aarch64
- rebuild with gcc 10.1

* Mon May 04 2020 tmb <tmb> 5.6.10-2.mga8
+ Revision: 1578714
- drm/scheduler: fix drm_sched_get_cleanup_job
- x86: Fix early boot crash on gcc-10
- KVM: squelch uninitialized variable warning

* Sat May 02 2020 tmb <tmb> 5.6.10-1.mga8
+ Revision: 1577957
- update to 5.6.10

* Wed Apr 29 2020 tmb <tmb> 5.6.8-1.mga8
+ Revision: 1573318
- printk: queue wake_up_klogd irq_work only if per-CPU areas are ready
- Fix use after free in get_tree_bdev()
- propagate_one(): mnt_set_mountpoint() needs mount_lock
- update to 5.6.8
- iwlwifi: pcie: handle QuZ configs with killer NICs as well
+ pterjan <pterjan>
- Fix building out of tree modules on aarch64

* Sat Apr 25 2020 tmb <tmb> 5.6.7-3.mga8
+ Revision: 1571777
- mm: check that mm is still valid in madvise()
- disable UEVENT_HELPER
- enable DEVTMPFS_MOUNT

* Fri Apr 24 2020 tmb <tmb> 5.6.7-2.mga8
+ Revision: 1571612
- disable LEDS_LP55XX_COMMON and deps so FW_LOADER_USER_HELPER
  can be disabled again as intended

* Thu Apr 23 2020 tmb <tmb> 5.6.7-1.mga8
+ Revision: 1571470
- update to 5.6.7
  * drop merged patches

* Tue Apr 21 2020 tmb <tmb> 5.6.6-1.mga8
+ Revision: 1570388
- fix System freezes after running dnf due to BFQ bug (bko#205447)
- add current -stable queue
- roll back 3rdparty rtl8812au driver to the one in 5.5.15 (mga#26501)
- update to 5.6.6
  * drop merged patches

* Sat Apr 18 2020 tmb <tmb> 5.6.5-2.mga8
+ Revision: 1569416
- drm/nouveau/sec2/gv100-: add missing MODULE_FIRMWARE()
- add current -stable queue

* Fri Apr 17 2020 tmb <tmb> 5.6.5-1.mga8
+ Revision: 1568353
- Revert "HID: wacom: generic: read the number of expected touches on a per
  collection basis"
- drm/amd/powerplay: force the trim of the mclk dpm_levels if OD is enabled
- drm/amdgpu: fix the hw hang during perform system reboot and reset
- drm/amdgpu/gfx9: add gfxoff quirk
- update to 5.6.5
- update virtualbox conflicts
- exfat: Fix discard support

* Mon Apr 13 2020 tmb <tmb> 5.6.4-1.mga8
+ Revision: 1567130
- update to 5.6.4
  * drop merged patches
- fat: Improve the readahead for FAT entries
- update conflicts on microcode and nonfree firmware
- enable more Cgroups2 controllers for rootless containerization (mga#26472)

* Sat Apr 11 2020 tmb <tmb> 5.6.3-2.mga8
+ Revision: 1566344
- driver core: Reevaluate dev->links.need_for_probe as suppliers are added
- obsolete fuse-exfat
- update dkms conflicts

* Fri Apr 10 2020 tmb <tmb> 5.6.3-1.mga8
+ Revision: 1566187
- update filelists
- fix aufs and exfat build
- update 3rdparty rtl8723de, rtl8812au, rtl8821ce drivers
- update defconfigs
- add current -stable queue
- rebase aufs, vmalloc and staging exfat removal patches
- update to 5.6.3
  * drop merged patches

* Sat Apr 04 2020 tmb <tmb> 5.5.15-3.mga8
+ Revision: 1564523
- exfat: add missing MODULE_ALIAS_FS()

* Sat Apr 04 2020 tmb <tmb> 5.5.15-2.mga8
+ Revision: 1564220
- add current -stable queue
- fix ndiswrapper build with newer kernels (Arch) and enable it again (mga#26430)

* Thu Apr 02 2020 tmb <tmb> 5.5.15-1.mga8
+ Revision: 1564050
- remove fuse-exfat conflict for now
- update to 5.5.15
  * drop merged patches
- update WireGuard to v1.0.20200401

* Wed Apr 01 2020 tmb <tmb> 5.5.14-1.mga8
+ Revision: 1563566
- bpf: Explicitly memset some bpf info structures declared on the stack
- bpf: Explicitly memset the bpf_attr structure
- update WireGuard to v1.0.20200330, and adjust for skb_reset_redirect()
  change in 5.5.14
- mac80211: Check port authorization in the ieee80211_tx_dequeue() case
- mac80211: fix authentication with iwlwifi/mvm
- bpf: update jmp32 test cases to fix range bound deduction
- update to 5.5.14
  * drop merged patches

* Wed Mar 25 2020 tmb <tmb> 5.5.13-1.mga8
+ Revision: 1560247
- r8169: re-enable MSI on RTL8168c
- update to 5.5.13
  * drop merged patches
+ tv <tv>
- do not reference lilo in README.kernel-sources (mga#15837)

* Sat Mar 21 2020 tmb <tmb> 5.5.11-1.mga8
+ Revision: 1558481
- update to 5.5.11
- watchdog: iTCO_wdt: Export vendorsupport
- watchdog: iTCO_wdt: Make ICH_RES_IO_SMI optional
- i2c: i801: Do not add ICH_RES_IO_SMI for the iTCO_wdt device
-  usb: xhci: apply XHCI_SUSPEND_DELAY to AMD XHCI controller 1022:145c
- ALSA: hda/realtek: Fix pop noise on ALC225
- staging: rtl8188eu: Add device id for MERCUSYS MW150US v2
- KVM: SVM: Issue WBINVD after deactivating an SEV guest
- iwlwifi: don't send GEO_TX_POWER_LIMIT if no wgds table
- conflict fuse-exfat as we now ship the official exfat driver
- locks: fix a potential use-after-free problem when wakeup a waiter
- locks: reinstate locks_delete_block optimization
- update WireGuard to v0.0.20200318

* Wed Mar 18 2020 tmb <tmb> 5.5.10-1.mga8
+ Revision: 1557624
- update to 5.5.10
- aarch64: enable libbpf and bpftool (tv)
- x86_64: enable ZONE_DEVICE, DEV_PAGEMAP_OPS, ND_PFN, NVDIMM_PFN,
  NVDIMM_DAX, FS_DAX_PMD (mga#26354)
- x86_64: enable module: DEV_DAX_PMEM, DEV_DAX_KMEM, DEV_DAX_PMEM_COMPAT
- arm64: enable FS_DAX
- enable F2FS_FS_SECURITY (mga#26354)
+ tv <tv>
- make libbpf-devel requires libbpf0 (it broke bcc)

* Thu Mar 12 2020 tmb <tmb> 5.5.9-1.mga8
+ Revision: 1555727
- update to 5.5.9
  * drop merged patches
- fscrypt: don't evict dirty inodes after removing key
- update rtl8812au driver (mga#26178)
- replace staging exfat driver with new upstream exfat driver

* Tue Mar 10 2020 tmb <tmb> 5.5.8-2.mga8
+ Revision: 1555365
- update to 5.5.9-rc

* Thu Mar 05 2020 tmb <tmb> 5.5.8-1.mga8
+ Revision: 1554131
- update to 5.5.8
- drm/i915: Actually emit the await_start
- block, bfq: get a ref to a group when adding it to a service tree
- block, bfq: remove ifdefs from around gets/puts of bfq groups
- block, bfq: extend incomplete name of field on_st
- block, bfq: get extra ref to prevent a queue from being freed during
  a group move
- block, bfq: do not insert oom queue into position tree
- rtw88: disable TX-AMSDU on 2.4G band
- ASoC: intel/skl/hda - export number of digital microphones via control
  components
- update Amd Sensor Fusion Hub driver to v4

* Sat Feb 29 2020 tmb <tmb> 5.5.7-1.mga8
+ Revision: 1552264
- x86/ioperm: Add new paravirt function update_io_bitmap()
- ahci: Add Intel Comet Lake H RAID PCI ID
- update to 5.5.7
  * drop merged patches

* Tue Feb 25 2020 tmb <tmb> 5.5.6-2.mga8
+ Revision: 1550266
- KVM: nVMX: Don't emulate instructions in guest mode (CVE-2020-2732)
- KVM: nVMX: Refactor IO bitmap checks into helper function (CVE-2020-2732)
- KVM: nVMX: Check IO instruction VM-exit conditions (CVE-2020-2732)
- add current -stable queue

* Mon Feb 24 2020 tmb <tmb> 5.5.6-1.mga8
+ Revision: 1549929
- fix up iwlwifi breakage (mga#26248, bko#206395
- update to 5.5.6 final
- work around radeon regression introduced in 5.4 series (mga#26237)
  * Revert "drm/radeon: simplify and cleanup setting the dma mask"
  * Revert "drm/radeon: handle PCIe root ports with addressing limitations"

* Sat Feb 22 2020 tmb <tmb> 5.5.5-3.mga8
+ Revision: 1549285
- update to 5.5.6-rc1
- ACPI: PM: s2idle: Check fixed wakeup events in acpi_s2idle_wake()
- hid: apple: Add support for recent firmware on Magic Keyboards

* Thu Feb 20 2020 tmb <tmb> 5.5.5-2.mga8
+ Revision: 1547366
- pipe: make sure to wake up everybody when the last reader/writer closes

* Wed Feb 19 2020 tmb <tmb> 5.5.5-1.mga8
+ Revision: 1545059
- add current -stable queue
- update to 5.5.5

* Sat Feb 15 2020 tmb <tmb> 5.5.4-1.mga8
+ Revision: 1525728
- drm/i915: Serialise i915_active_acquire() with __active_retire()
- update to 5.5.4
- update WireGuard to v0.0.20200215
- update WireGuard to v0.0.20200214

* Tue Feb 11 2020 tmb <tmb> 5.5.3-1.mga8
+ Revision: 1489561
- enable bpftool build again
- perf: add systemtrace and babeltrace support
- hwmon: (k10temp) Swap Tdie and Tctl on Family 17h CPUs
- hwmon: (k10temp) Reorganize and simplify temperature support detection
- hwmon: (k10temp) Update driver documentation
- drm/i915/execlists: Always force a context reload when rewinding RING_TAIL
- perf/x86/amd: Add missing L2 misses event spec to AMD Family 17h event map
- perf: work around build issues with binutils 2.34
- revert: 'objtool: Silence build output'
- update to 5.5.3
  * drop merged patches
- HID: Extend report buffer size

* Mon Feb 10 2020 tmb <tmb> 5.5.2-3.mga8
+ Revision: 1488461
- iommu/amd: Disable IOMMU on Stoney Ridge systems
- update dkms conflicts

* Mon Feb 10 2020 tmb <tmb> 5.5.2-2.mga8
+ Revision: 1488358
- iwlwifi: pcie: restore support for Killer Qu C0 NICs
- add current -stable queue
- iwlwifi: mvm: Do not require PHY_SKU NVM section for 3168 devices
- pipe: use exclusive waits when reading or writing
- add current -stable queue
- update WireGuard to v0.0.20200205

* Tue Feb 04 2020 tmb <tmb> 5.5.2-1.mga8
+ Revision: 1487059
- disable perf and bpftool builds for now (broken by binutils 2.34 api breakage)
- wireguard: allowedips: fix use-after-free in root_remove_peer_lists
- iommu/vt-d: Mark firmware tainted if RMRR fails sanity check
- update to 5.5.2
- update python3 patch
- update filelists
- fix shuttle-wmi build with 5.5 series kernel
- disable broken NDISWRAPPER
- update defconfigs
- rediff 3rdparty merge, vboxsf, shuttlet-wmi and mrproper patches
- update aufs to 5.5
- drop merged/obsolete patches
- update to 5.5.1

* Sat Feb 01 2020 tmb <tmb> 5.4.17-1.mga8
+ Revision: 1486395
- e1000e: Revert "e1000e: Make watchdog use delayed work"
- e1000e: Add support for Comet Lake
- e1000e: Add support for Tiger Lake
- x86/timer: Don't skip PIT setup when APIC is disabled or in legacy mode
- vfs: fix do_last() regression introduced in 5.4.16
- cifs: fix soft mounts hanging in the reconnect code
- fix x86/kvm security issue CVE-2019-3016
  * x86/kvm: Be careful not to clear KVM_VCPU_FLUSH_TLB bit
  * x86/kvm: Introduce kvm_(un)map_gfn()
  * x86/kvm: Cache gfn to pfn translation
  * x86/KVM: Make sure KVM_VCPU_FLUSH_TLB flag is not missed
  * x86/KVM: Clean up host's steal time structure
- updte to 5.4.17
- move kernel preun bits to postun to fix grub2 menu cleanup on kernel
  uninstall (mga#16268)

* Wed Jan 29 2020 tmb <tmb> 5.4.16-1.mga8
+ Revision: 1485095
- update to 5.4.16
  * drop merged patches
- update AMD Sensor Fusion Hub patchset to v2
- update WireGuard to t v0.0.20200128

* Mon Jan 27 2020 tmb <tmb> 5.4.15-2.mga8
+ Revision: 1484080
- add current -stable queue
- update 'iwlwifi: mvm: don't send the IWL_MVM_RXQ_NSSN_SYNC notif to
  Rx queues' to final version merged upstream
- add current -stable -net queue (DaveM)

* Sun Jan 26 2020 tmb <tmb> 5.4.15-1.mga8
+ Revision: 1483202
- update hwmon/k10temp voltage/temperature monitoring patchset to v4
- update to 5.4.15

* Thu Jan 23 2020 tmb <tmb> 5.4.14-1.mga8
+ Revision: 1482580
- update to 5.4.14
  * drop merged patches
- update WireGuard to v0.0.20200121
- update Amd Ryzen hwmon/k10temp patches to v2
- macvlan: use skb_reset_mac_header() in macvlan_queue_xmit()
- reiserfs: fix handling of -EOPNOTSUPP in reiserfs_for_each_xattr (5.4.4 regression)

* Fri Jan 17 2020 tmb <tmb> 5.4.13-1.mga8
+ Revision: 1481370
- update to 5.4.13 final
- locking/rwsem: Fix kernel crash when spinning on RWSEM_OWNER_UNKNOWN
- Revert "Input: synaptics-rmi4 - don't increment rmiaddr for SMBus transfers"
- x86/cpu: Update cached HLE state on write to TSX_CTRL_CPUID_CLEAR
- x86/CPU/AMD: Ensure clearing of SME/SEV features is maintained
- platform/x86: asus_wmi:
  * Support throttle thermal policy
  * set throttle thermal policy to default to avoid overheating and throttling
- hid: add Amd Sensor Fusion Hub Driver
- hwmon/k10temp:
  * add support for reporting Core Complex Die (CCD) temperatures on
    Ryzen 3 (Zen2) CPUs.
  * add support for reporting core and SoC current and voltage
    information on Ryzen CPUs.

* Fri Jan 17 2020 tmb <tmb> 5.4.12-2.mga8
+ Revision: 1481211
- update to 5.4.13-rc1

* Tue Jan 14 2020 tmb <tmb> 5.4.12-1.mga8
+ Revision: 1478015
- update to 5.4.12
  * drop merged patches

* Tue Jan 14 2020 tmb <tmb> 5.4.11-3.mga8
+ Revision: 1477849
- add current -stable queue

* Mon Jan 13 2020 tmb <tmb> 5.4.11-2.mga8
+ Revision: 1477829
- add current -stable queue

* Sun Jan 12 2020 tmb <tmb> 5.4.11-1.mga8
+ Revision: 1477674
- update to 5.4.11

* Thu Jan 09 2020 tmb <tmb> 5.4.10-1.mga8
+ Revision: 1477402
- update to 5.4.10
  * drop merged patches

* Tue Jan 07 2020 tmb <tmb> 5.4.8-3.mga8
+ Revision: 1477141
- add updates from current -stable queue
- Revert 'drm/amdgpu: Set no-retry as default.' (mga#25882)
+ pterjan <pterjan>
- Reduce differences between arm64 and x86_64 defconfigs

* Mon Jan 06 2020 tmb <tmb> 5.4.8-2.mga8
+ Revision: 1476802
- rseq/selftests: Fix: Namespace gettid() for compatibility with glibc 2.30
- add current -stable queue
- update WireGuard to 0.0.20200105
+ pterjan <pterjan>
- Disable debug info on arm64 (mga#26015)

* Sat Jan 04 2020 tmb <tmb> 5.4.8-1.mga8
+ Revision: 1476545
- update to 5.4.8
  * drop merged patches
- exit: panic before exit_mm() on global init exit
- mm/hugetlbfs: fix for_each_hstate() loop in init_hugetlbfs_fs()
- HID: intel-ish-hid: ipc: Add Comet Lake H PCI device ID
- HID: intel-ish-hid: ipc: Add Tiger Lake PCI device ID
- HID: wacom: Recognize new MobileStudio Pro PID
+ pterjan <pterjan>
- Enable a lot of missing things on arm64 kernels (including ACPI and Amazon network driver)

* Thu Jan 02 2020 tmb <tmb> 5.4.7-3.mga8
+ Revision: 1475601
- drop broken 'clk: Fix memory leak in clk_unregister()'
- update filelists
- mountpoint_last(): fix the treatment of LAST_BIND
- rtl8xxxu: Add support for Edimax EW-7611ULB
- add current -stable queue
- 3rdparty/rtl8812au: update to v5.6.4.2
- add support for RTL8117 ethernet
+ pterjan <pterjan>
- Use 4K pages rather than 16K, 4K is the only size required by UEFI... and the only one supported on Amazon machines. This is also needed to be able to run any 32 bit binary (else they need to be compiled with proper alignment).
- Enable some EFI stuff on arm64 (mga#26003)

* Tue Dec 31 2019 tmb <tmb> 5.4.7-1.mga8
+ Revision: 1475077
- update to 5.4.7 final
- drm/i915/gt: Detect if we miss WaIdleLiteRestore v2 (mga#25930)

* Mon Dec 30 2019 tmb <tmb> 5.4.6-5.mga8
+ Revision: 1474876
- perf probe: Fix to show function entry line as probe-able
- update to 5.4.7-rc1

* Sat Dec 28 2019 tmb <tmb> 5.4.6-4.mga8
+ Revision: 1474635
- drop 'drm/i915/gt: Detect if we miss WaIdleLiteRestor' as it breaks more than it fixes
- add more -stable queue fixes

* Sat Dec 28 2019 tmb <tmb> 5.4.6-3.mga8
+ Revision: 1474541
- disable broken -stable queue patches
- update WireGuard to 0.0.20191226
- drm/i915/gt: Detect if we miss WaIdleLiteRestore (mga#25930)
- add current -stable queue

* Tue Dec 24 2019 tmb <tmb> 5.4.6-2.mga8
+ Revision: 1469785
- Revert "iwlwifi: mvm: fix scan config command size" (mga#25926)

* Sun Dec 22 2019 tmb <tmb> 5.4.6-1.mga8
+ Revision: 1469482
- iwlwifi: mvm: fix unaligned read of rx_pkt_status
- iwlwifi: fix GRO_NORMAL packet stalling
- iwlwifi: check kasprintf() return value
- rtw88: coex: Set 4 slot mode for A2DP
- rtw88: fix NSS of hw_cap
- update WireGuard to 0.0.20191219
- update to 5.4.6
  * drop merged patches
- Revert "drm/radeon: simplify and cleanup setting the dma mask"
- Revert "drm/radeon: handle PCIe root ports with addressing limitations"

* Wed Dec 18 2019 tmb <tmb> 5.4.5-1.mga8
+ Revision: 1468752
- update to 5.4.5
  * drop merged patches
- platform/x86: hp-wmi: Make buffer for HPWMI_FEATURE2_QUERY 128 bytes

* Wed Dec 18 2019 tmb <tmb> 5.4.4-1.mga8
+ Revision: 1468678
- nbd: fix shutdown and recv work deadlock
- iocost: over-budget forced IOs should schedule async delay
- x86/MCE/AMD: Do not use rdmsr_safe_on_cpu() in smca_configure()
- wireguard: adjust for ipv6_dst_lookup_flow() API change
- add current -stable queue
- update to 5.4.4
  * drop merged patches
- enable IR_SERIAL (mga#24660)

* Mon Dec 16 2019 tmb <tmb> 5.4.3-2.mga8
+ Revision: 1468094
- update to WireGuard to 0.0.20191212
- add current -stable queue

* Fri Dec 13 2019 tmb <tmb> 5.4.3-1.mga8
+ Revision: 1466287
- x86/mm: Split vmalloc_sync_all()
- update to 5.4.3
  * drop merged patches

* Mon Dec 09 2019 tmb <tmb> 5.4.2-2.mga8
+ Revision: 1465490
- drm/i915/gt: Close race between engine_park and intel_gt_retire_requests
- drm/i915/gt: Adapt engine_park synchronisation rules for engine_retire
- drm/i915/gt: Schedule request retirement when timeline idles
- iwlwifi: pcie: move power gating workaround earlier in the flow
- ACPI: HMAT: don't mix pxm and nid when setting memory target processor_pxm
- add current -stable queue
- x86/quirks: disable HPET on Intel Coffee Lake Refresh platforms

* Thu Dec 05 2019 tmb <tmb> 5.4.2-1.mga8
+ Revision: 1464611
- update WireGuard to 0.0.20191205
- rsi: release skb if rsi_prepare_beacon fails
- drm/radeon: fix r1xx/r2xx register checker for POT textures
- drm/amd/display: re-enable wait in pipelock, but add timeout
- KVM: x86: fix out-of-bounds write in KVM_GET_EMULATED_CPUID (CVE-2019-19332)
- update to 5.4.2
  * drop merged patches

* Mon Dec 02 2019 tmb <tmb> 5.4.1-3.mga8
+ Revision: 1464059
- Revert "iwlwifi: assign directly to iwl_trans->cfg in QuZ detection"
- iwlwifi: mvm: don't send the IWL_MVM_RXQ_NSSN_SYNC notif to Rx queues
- drm/i915/fbc: Disable fbc by default on all glk+
- update WireGuard to 0.0.20191127
- add current -stable queue

* Sun Dec 01 2019 tmb <tmb> 5.4.1-2.mga8
+ Revision: 1463950
- r8169: fix regression with jumbo frames
- nvme: Discard workaround for non-conformant devices
- nmwe: add hardware monitoring support
- enable DRM_AMDGPU_USERPTR
- update dkms conflicts

* Sun Dec 01 2019 tmb <tmb> 5.4.1-1.mga8
+ Revision: 1463899
- xhci-pci: Allow host runtime PM as default also for Intel Ice Lake xHCI
- x86: disable broken HPET on Intel Coffee Lake H and Ice Lake platforms
- update filelists
- update mrproper patch
- rtl8821ce: fix build with kernel 5.4
- ndiswrapper: fix build with kernel 5.4
- aufs: drop duplicate export
- update defconfigs
- add current -stable queue
- update to 5.4.1
- update python3 patch
- drop obsolete mach64 support
- update vboxsf support
- update aufs for 5.4
- update to 5.4.0
  * drop merged patches
- x86/fpu: Don't cache access to fpu_fpregs_owner_ctx
- add current -stable queue
- x86/mce/AMD: Allow Reserved types to be overwritten in smca_banks[]

* Mon Nov 25 2019 tmb <tmb> 5.3.13-2.mga8
+ Revision: 1462827
- add current -stable queue

* Sun Nov 24 2019 tmb <tmb> 5.3.13-1.mga8
+ Revision: 1462636
- update to 5.3.13

* Wed Nov 20 2019 tmb <tmb> 5.3.12-1.mga8
+ Revision: 1461900
- update to 5.3.12

* Tue Nov 12 2019 tmb <tmb> 5.3.11-1.mga8
+ Revision: 1459684
- update to 5.3.11
  * drop merged patches

* Mon Nov 11 2019 tmb <tmb> 5.3.10-2.mga8
+ Revision: 1459324
- ARM: sunxi: Fix CPU powerdown on A83T
- cpufreq: intel_pstate: Fix invalid EPB setting
- x86/apic/32: Avoid bogus LDR warnings
- x86/dumpstack/64: Don't evaluate exception stacks before setup
- arm(64): enable NET_VENDOR_STMICRO, STMMAC* and DWMAC* (mga#25618)

* Sun Nov 10 2019 tmb <tmb> 5.3.10-1.mga8
+ Revision: 1459063
- arm: enable more config options for sunxi / Banana pro (mga#25618)
- iwlwifi: pcie: fix PCI ID 0x2720 configs that should be soc
- iwlwifi: pcie: fix all 9460 entries for qnj
- iwlwifi: pcie: 0x2720 is qu and 0x30DC is not
- rtw88: 8822b: re-add RFE type 3 support
- add current -net stable queue
- update to 5.3.10
  * drop merged patches
- arm: make MMC_SUNXI builtin (mga#25618)
- arm: enable SERIAL_8250_DW and SERIAL_OF_PLATFORM (mga#25618)

* Wed Nov 06 2019 tmb <tmb> 5.3.9-1.mga8
+ Revision: 1458402
- add fixes from current -stable queue
- update to 5.3.9
  * drop merged patches

* Tue Oct 29 2019 tmb <tmb> 5.3.8-1.mga8
+ Revision: 1456597
- update to 5.3.8
  * drop merged patches

* Thu Oct 24 2019 tmb <tmb> 5.3.7-4.mga8
+ Revision: 1455682
- iwlwifi: exclude GEO SAR support for 3168 (mga#25609)

* Wed Oct 23 2019 tmb <tmb> 5.3.7-3.mga8
+ Revision: 1455234
- ALSA: hda/realtek - Add support for ALC711
- Fix MTRR bug for intel-lpss-pci
- add more -stable queue fixes

* Sun Oct 20 2019 tmb <tmb> 5.3.7-2.mga8
+ Revision: 1454821
- rtlwifi: Fix potential overflow on P2P code (CVE-2019-17666)
- mm: memcg: get number of pages on the LRU list in memcgroup base on
  lru_zone_size
- add current -stable queue
- re-enable perf build again

* Fri Oct 18 2019 tmb <tmb> 5.3.7-1.mga8
+ Revision: 1454452
- disable perf build again due to broken texlive-dist lua deps
- drm/ttm: Restore ttm prefaulting
- drm/i915/userptr: Never allow userptr into the mappable GGTT
- drm/i915: Favor last VBT child device with conflicting AUX ch/DDC pin
- update to 5.3.7
  * drop merged patches
- re-enable perf build

* Thu Oct 17 2019 tmb <tmb> 5.3.6-3.mga8
+ Revision: 1454382
- disable perf build for now
- update to 5.3.7-rc
- mm, compaction: fix wrong pfn handling in __reset_isolation_pfn()
- mm/memory-failure: poison read receives SIGKILL instead of SIGBUS if
  mmaped more than once
- mm/slub: fix a deadlock in show_slab_objects()
- rtl8xxxu: Improve TX performance of RTL8723BU
- rtl8xxxu: fix RTL8723BU connection failure issue after warm reboot
- sched/fair: Fix low cpu usage with high throttling by removing expiration
  of cpu-local slices
- 3rdparty rtl8723de/rtl8821ce: dont set .maxattr
- 3rdparty/rtl8821ce:
  * fix some build warnings
  * enable DFS
- enable I2C_DESIGNWARE_SLAVE

* Sun Oct 13 2019 tmb <tmb> 5.3.6-2.mga8
+ Revision: 1452820
- panic: ensure preemption is disabled during panic()
- update WireGuard to 0.0.20191012

* Fri Oct 11 2019 tmb <tmb> 5.3.6-1.mga8
+ Revision: 1451955
- update to 5.3.6
- 3rdparty/rtl8821ce: update to v5.5.2

* Tue Oct 08 2019 tmb <tmb> 5.3.5-1.mga8
+ Revision: 1450557
- 3rdparty: rtl8723/rtl8821ce: set .policy and .maxattr (needed for 5.3)
- update to 5.3.5

* Sat Oct 05 2019 tmb <tmb> 5.3.4-1.mga8
+ Revision: 1449744
- rtl8xxxu: Fix wifi low signal strength issue of RTL8723BU
- rtw88: add fixes from upcoming 5.4
- exfat: add fixes from upcpming 5.4 series kernel
- amdgpu: re-enable bulk moves
- update to 5.3.4
  * drop merged patches

* Tue Oct 01 2019 tmb <tmb> 5.3.2-1.mga8
+ Revision: 1448711
- iommu/amd: Override wrong IVRS IOAPIC on Raven Ridge systems
- add current -net stable queue
- update to 5.3.2
  * drop merged patches
- really update i386-desktop* defconfigs
- update aarch64 filelist
- thermal: int340x: processor_thermal: Add Ice Lake support
- thermal: processor_thermal_device: Export sysfs interface for TCC offset

* Fri Sep 27 2019 tmb <tmb> 5.3.1-2.mga8
+ Revision: 1447579
- BR rsync for headers_install target
- temp disable aarch64 builds due to gcc crash
- obsolete crda
- create arch-specific userspace-headers rpm directly from kernel build
  as headers_install_all target is gone from upstream 5.3
- iwlwifi: fw: don't send GEO_TX_POWER_LIMIT command to FW version 36
- ath10k: fix latency issue for QCA988x
- add current -stable queue
- update defconfigs
- update filelists
- fix ndiswrapper build
- drop obsolete mpt vmware workaround
- rebase mrproper patch
- rebase 3rdparty merge, exfat, vboxsf, shuttle-wmi, python3 patches
- update aufs to 5.3
- update to 5.3.1
  * drop merged patches

* Sun Sep 22 2019 tmb <tmb> 5.2.17-1.mga8
+ Revision: 1444686
- add current -stable queue
- update to 5.2.17
- arm/aarch64: enable Allwinner support

* Fri Sep 20 2019 tmb <tmb> 5.2.16-2.mga8
+ Revision: 1444084
- KVM: coalesced_mmio: add bounds checking (CVE-2019-14821)
- mwifiex: Fix three heap overflow at parsing element in cfg80211_ap_settings
  (CVE-2019-14814, CVE-2019-14815, CVE-2019-14816)

* Thu Sep 19 2019 tmb <tmb> 5.2.16-1.mga8
+ Revision: 1443824
- enable aarch64 builds again
- disable rpmbuild threading on aarch64 as it still deadlocks
- update to 5.2.16
  * drop merged patches
- update WireGuard to 0.0.20190913

* Wed Sep 18 2019 tmb <tmb> 5.2.15-2.mga8
+ Revision: 1443575
- update to 5.2.16-rc1

* Mon Sep 16 2019 tmb <tmb> 5.2.15-1.mga8
+ Revision: 1442256
- exclude aarch64 for now
- add current -stable net queue
- update to 5.2.15
  * drop merged patches

* Sat Sep 14 2019 tmb <tmb> 5.2.14-3.mga8
+ Revision: 1440908
- update to 5.2.15-rc

* Fri Sep 13 2019 tmb <tmb> 5.2.14-2.mga8
+ Revision: 1440230
- add current -stable queue

* Tue Sep 10 2019 tmb <tmb> 5.2.14-1.mga8
+ Revision: 1439511
- build on only x86(_64) for now, as arm still has problem with rpm-4.15-rc
- add current -stable queue
- update to 5.2.14
  * drop merged patches
- update to 5.2.14-rc
- Revert "x86/apic: Include the LDR when clearing out APIC registers"
- reset gcc dep to same as Mga7
- build on all arches again
- build on all available cpus again

* Sun Sep 08 2019 tmb <tmb> 5.2.13-1.mga8
+ Revision: 1438400
- build on only x86(_64) for now
- limit to 4 cpus to work around broken rpmbuild-4.15-rc
- more python3 shebang fixes
- update rtw88 to 5.3-rc7
- update WireGuard to 0.0.20190905
- update python3 shebang
- add current net -stable queue from DaveM
- update to 5.2.13
- update to 5.2.12
  * drop merged patches

* Sat Aug 31 2019 tmb <tmb> 5.2.11-2.mga8
+ Revision: 1435997
- update 3rdparty rtl8812au driver
- add current -stable queue
- drivers/staging/exfat - by default, prohibit mount of fat/vfat
- switch to python3
- arm: enable CONFIG_COMPACTION

* Thu Aug 29 2019 tmb <tmb> 5.2.11-1.mga8
+ Revision: 1435157
- add exfat support to staging
- update to 5.2.11
  * drop merged patches

* Wed Aug 28 2019 tmb <tmb> 5.2.10-2.mga8
+ Revision: 1434820
- add net -stable queue from DaveM
- update to 5.2.11-rc1

* Sun Aug 25 2019 tmb <tmb> 5.2.10-1.mga8
+ Revision: 1431957
- x86/retpoline: Don't clobber RFLAGS during CALL_NOSPEC on i386
- x86/CPU/AMD: Clear RDRAND CPUID bit on AMD family 15h/16h
- x86/apic: Handle missing global clockevent gracefully
- update to 5.2.10
  * drop merged patches

* Sat Aug 17 2019 tmb <tmb> 5.2.9-1.mga8
+ Revision: 1429502
- add current -stable queue
- update to 5.2.9
  * drop merged patches

* Wed Aug 14 2019 tmb <tmb> 5.2.8-3.mga8
+ Revision: 1429303
- ALSA: hda - Workaround for crackled sound on AMD controller used on
  atleast X370, X470, B450, etc with PCI ID 1022:1457
- add current -stable queue

* Tue Aug 13 2019 tmb <tmb> 5.2.8-2.mga8
+ Revision: 1429121
- add current -stable queue
- build with gcc 9.2

* Fri Aug 09 2019 tmb <tmb> 5.2.8-1.mga8
+ Revision: 1428474
- update to 5.2.8
  * drop merged patches

* Wed Aug 07 2019 tmb <tmb> 5.2.7-1.mga8
+ Revision: 1427917
- update to 5.2.7
- add current -stable queue

* Sun Aug 04 2019 tmb <tmb> 5.2.6-1.mga8
+ Revision: 1427267
- update to 5.2.6
  * drop merged patches
- iwlwifi: Add support for SAR South Korea limitation
- iwlwifi: pcie: increase the size of PCI dumps
- iwlwifi: add new cards for 22000 and fix struct name
- iwlwifi: add new cards for 22000 and change wrong structs
- iwlwifi: change 0x02F0 fw from qu to quz
- iwlwifi: add new cards for 9000 and 20000 series
- iwlwifi: pcie: add support for qu c-step devices

* Fri Aug 02 2019 tmb <tmb> 5.2.5-2.mga8
+ Revision: 1426918
- update to 5.2.6-rc1
- add kernel-5.2 buildfix for rtl8723de

* Thu Aug 01 2019 tmb <tmb> 5.2.5-1.mga8
+ Revision: 1426770
- update filelists
- mwifiex: fix 802.11n/WPA detection
- Revert "mac80211: set NETIF_F_LLTX when using intermediate tx queues"
- iwlwifi: mvm: fix version check for GEO_TX_POWER_LIMIT support
- add current -stable queue
- fix rtl8812 build with kernel 5.2 series
- update defconfigs
- update aufs and vboxsf patches
- rebase 3rdparty-merge, IFWLOG, psd patches
- drop obsolete IdeaPad 320-15IKB rfkill patch
- rediff mrproper patch
- drop merged patches
- update to 5.2.5

* Sat Jul 27 2019 tmb <tmb> 5.1.20-2.mga8
+ Revision: 1424456
- add current -stable queue

* Fri Jul 26 2019 tmb <tmb> 5.1.20-1.mga8
+ Revision: 1424372
- add current -stable -net queue
- enable Full dynticks system (tickless) (NO_HZ_FULL)
- update to 5.1.20
  * drop merged patches

* Tue Jul 23 2019 tmb <tmb> 5.1.19-1.mga8
+ Revision: 1423647
- disable broken btrfs patch
- x86/amd_nb: Add PCI device IDs for family 17h, model 70h
- hwmon: (k10temp) Add support for AMD family 17h, model 70h CPUs
- iwlwifi: dont send GEO_TX_POWER_LIMIT on version less than 41 (mga#25143)
- add current -stable queue
- update to 5.1.19

* Sun Jul 14 2019 tmb <tmb> 5.1.18-1.mga8
+ Revision: 1421104
- update to 5.1.18
  * drop merged patches

* Wed Jul 10 2019 tmb <tmb> 5.1.17-1.mga8
+ Revision: 1419854
- disable CONFIG_VALIDATE_FS_PARSER
- update to 5.1.17
  * drop merged patches

* Thu Jul 04 2019 tmb <tmb> 5.1.16-2.mga8
+ Revision: 1418106
- add current -stable queue
- iwlwifi: mvm: disable TX-AMSDU on older NICs

* Wed Jul 03 2019 tmb <tmb> 5.1.16-1.mga8
+ Revision: 1417926
- add current -stable queue
- update WireGuard to 0.0.20190702
- update to 5.1.16 final

* Tue Jul 02 2019 tmb <tmb> 5.1.15-2.mga8
+ Revision: 1417539
- update to 5.1.6-rc1

* Sat Jun 29 2019 tmb <tmb> 5.1.15-1.mga8
+ Revision: 1415604
- update to 5.1.15

* Sat Jun 22 2019 tmb <tmb> 5.1.14-1.mga7
+ Revision: 1400488
- update to 5.1.14
  * drop merged patches

* Mon Jun 17 2019 tmb <tmb> 5.1.11-1.mga7
+ Revision: 1400174
- update to 5.1.11

* Sun Jun 16 2019 tmb <tmb> 5.1.10-3.mga7
+ Revision: 1400130
- add more -stable queue fixes

* Sat Jun 15 2019 tmb <tmb> 5.1.10-2.mga7
+ Revision: 1400023
- add current -stable queue
- drm/i915: Fix per-pixel alpha with CCS
- io_uring: fix memory leak of UNIX domain socket inode
- libata: Extend quirks for the ST1000LM024 drives with NOLPM quirk
- bcache: fix stack corruption by PRECEDING_KEY()
- bcache: only set BCACHE_DEV_WB_RUNNING when cached device attached
- rtw88: 8822b: add RFE type 3 support

* Sat Jun 15 2019 tmb <tmb> 5.1.10-1.mga7
+ Revision: 1399991
- update conflicts on btrfs-progs
- update efibootmgr conflicts
- update conflicts on grub2
- update conflicts on mageia-gfxboot-theme
- update firmware conflicts / deps
- r8169: use netif_start_queue instead of netif_wake_qeueue in
  rtl8169_start_xmit
- r8169: disable tx interrupt coalescing on RTL8168
- r8169: change irq handler to always trigger NAPI polling
- r8169: remove manual autoneg restart workaround
- hid: input: make sure the wheel high resolution multiplier is set
- hid: input: fix assignment of .value
- re-add: drm/nouveau: add kconfig option to turn off nouveau legacy contexts
- drm/nouveau: Fix build with CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT disabled
- update to 5.1.10
  * drop merged/obsolete patches

* Tue Jun 11 2019 tmb <tmb> 5.1.9-1.mga7
+ Revision: 1399804
- Revert 'drm: allow render capable master with DRM_AUTH ioctls'
- update to 5.1.9 final

* Mon Jun 10 2019 tmb <tmb> 5.1.8-1.mga7
+ Revision: 1399757
- enable NOUVEAU_LEGACY_CTX_SUPPORT
- disable RTL8821CE on i586 for now
- update -devel filelist for rtl8821ce
- add current -stable queue
- add rtl8821ce support (mga#24605)
- update to 5.1.8

* Thu Jun 06 2019 tmb <tmb> 5.1.7-2.mga7
+ Revision: 1399625
- fix CVE-2019-10126, CVE-2019-12378, CVE-2019-12379, CVE-2019-12380,
  CVE-2019-12381, CVE-2019-12382, CVE-2019-12454, CVE-2019-12455,
  CVE-2019-12456, CVE-2019-3846
- Revert "x86/build: Move _etext to actual end of .text"
- x86/kprobes: Set instruction page as executable

* Tue Jun 04 2019 tmb <tmb> 5.1.7-1.mga7
+ Revision: 1399550
- add current -stable queue
- update to 5.1.7
- memcg: make it work on sparse non-0-node systems
-  scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask
- usb: xhci: avoid null pointer deref when bos field is NULL
- xhci: Convert xhci_handshake() to use readl_poll_timeout_atomic()
- x86/CPU/AMD: Don't force the CPB cap when running under a hypervisor
- add -stable queue patchlist generator

* Sat Jun 01 2019 tmb <tmb> 5.1.6-1.mga7
+ Revision: 1399456
- update GPIO in defconfigs
- update WireGuard to 0.0.20190601
- obsolete the retired kernel-tmb-*(devel)-latest
- add stable -net fixes
- obsolete vboxadditions-kernel-*-latest
- drop old kernel buildsystem
- update 3rdparty integration
- move patches to SOURCES and switch to autopatch
- split out defconfigs
- update to 5.1.6
- tipc: fix modprobe tipc failed after switch order of device registration

* Sat May 25 2019 shlomif <shlomif> 5.1.5-1.mga7
+ Revision: 1399122
- New version 5.1.5

* Wed May 22 2019 tmb <tmb> 5.1.4-1.mga7
+ Revision: 1398841
- Bluetooth: Check key sizes only when Secure Simple Pairing is enabled
- sync with current -stable queue
- update to 5.1.4 final

* Tue May 21 2019 tmb <tmb> 5.1.3-6.mga7
+ Revision: 1398768
- disable upstream ext4 fixes causing data corruption
- add -net -stable fixes
- btrfs: reloc: Fix NULL pointer dereference due to expanded
  reloc_root lifespan

* Mon May 20 2019 tmb <tmb> 5.1.3-5.mga7
+ Revision: 1398555
- netfilter/nf_nat_helper: fix UDP checksums
- update to 5.1.4-rc1
- drop "Revert 'ACPICA: AML interpreter: add region addresses in global list
  during initialization'" as it got properly fixed in 5.1-rc6

* Sun May 19 2019 tmb <tmb> 5.1.3-4.mga7
+ Revision: 1398436
- dont activate lsm modules by default
  (wanted lsm can be activated by adding 'lsm=<wanted_lsm>'
   on kernel command line)
- drop 'drm/i915: Split some PCI ids into separate groups'
- perf/x86/intel/uncore: Add Intel Icelake uncore support
- ALSA: hda/realtek - Corrected fixup for System76 Gazelle
- drm/i915/cml: Add Comet Leke PCI IDS
- drm/i915/cml: Introduce Comet Lake PCH
- drm/i915: Split some PCI ids into separate groups
- mfd: intel-lpss: Add Intel Comet Lake PCI IDs
- mmc: sdhci-pci: Add support for Intel Comet Lake
- spi: pxa2xx: Add support for Intel Comet Lake
- spi-nor: intel-spi: Add support for Intel Comet Lake SPI
- ALSA: hda/intel: add Comet Lake PCI IDs
- drm/i915: Add new ICL PCI ID
- i40e: add new pci id for X710/XXV710 N3000 cards

* Sat May 18 2019 tmb <tmb> 5.1.3-3.mga7
+ Revision: 1398254
- libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead
- fbdev/efifb: Ignore framebuffer memmap entries that lack any memory types
- add current -stable queue

* Fri May 17 2019 tmb <tmb> 5.1.3-2.mga7
+ Revision: 1398184
- iwlwifi: trans: fix killer series loadded incorrect firmware
- add current -stable queue

* Fri May 17 2019 tmb <tmb> 5.1.3-1.mga7
+ Revision: 1398123
- drm/nouveau/core: initial support for boards with TU117 chipset
- locking/rwsem: Prevent decrement of reader count before increment
- update to 5.1.3 final

* Thu May 16 2019 tmb <tmb> 5.1.2-2.mga7
+ Revision: 1397953
- update microcode and dkms-nvidia340 conflicts
- ext4: fix block validity checks for journal inodes using indirect blocks
- update to 5.1.3-rc1
- dont use parallell xargs when generating modules.description (mga #15959)

* Tue May 14 2019 tmb <tmb> 5.1.2-1.mga7
+ Revision: 1397732
- add current -stable queue
- update to 5.1.2
- rtw88: fix subscript above array bounds compiler warning
- rtw88: fix unassigned rssi_level in rtw_sta_info
- rtw88: enable debugging support
- add r8822be module alias to the new rtw88 driver
- fix ACPI_DEBUG_DEFAULT definition

* Sat May 11 2019 tmb <tmb> 5.1.1-1.mga7
+ Revision: 1397182
- update to 5.1.1

* Thu May 09 2019 tmb <tmb> 5.1.0-2.mga7
+ Revision: 1396971
- uapi: avoid namespace conflict in linux/posix_types.h
- add current -stable queue
- package bpftool and lib(64)bpf
- ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for hibernate

* Mon May 06 2019 tmb <tmb> 5.1.0-1.mga7
+ Revision: 1396430
- update to 5.1.0 final
- i2c: Add drivers for the AMD PCIe MP2 I2C controller

* Fri May 03 2019 tmb <tmb> 5.1.0-0.rc7.2.mga7
+ Revision: 1396220
- add post -rc7 fixes from upstream git
- add new rtw88 wifi driver for Realtek 8822BE and 8822CE
- disable Realtek R8822BE wifi staging driver (will be removed in 5.2)
- fix and enable perf build

* Mon Apr 29 2019 tmb <tmb> 5.1.0-0.rc7.1.mga7
+ Revision: 1395837
- x86/mm/tlb: Remove 'struct flush_tlb_info' from the stack
- add upstream iwlwifi and mwifiex wireless fixes
- update to 5.1-rc7

* Wed Apr 24 2019 tmb <tmb> 5.1.0-0.rc6.2.mga7
+ Revision: 1395106
- add post -rc6 fixes from git
- update microcode conflict
- update dkms conflicts
- update firmware conflicts

* Mon Apr 22 2019 tmb <tmb> 5.1.0-0.rc6.1.mga7
+ Revision: 1394608
- update defconfigs
- add 5.1 buildfixes for rtl8723de, rtl8812au
- fix 3rdparty, vboxsf, shuttle-wmi, tools patches to apply cleanly
- rebase aufs patches
- update filelists
- drop merged/obsolete patches
- update to 5.1-rc6
- drop obsolete kgit patch support

* Sat Apr 20 2019 tmb <tmb> 5.0.9-1.mga7
+ Revision: 1393804
- add current -stable -net queue
- update to 5.0.9 final

* Thu Apr 18 2019 tmb <tmb> 5.0.8-1.mga7
+ Revision: 1393262
- fix perf build
- fix cursor when clearing the screen
- x86/speculation: Support 'mitigations=' cmdline option
- rtlwifi: rtl8723ae: Fix missing break in switch statement
- add current -stable queue
- update to 5.0.8 final

* Mon Apr 15 2019 tmb <tmb> 5.0.7-5.mga7
+ Revision: 1391058
- update to 5.0.8-rc1

* Wed Apr 10 2019 tmb <tmb> 5.0.7-4.mga7
+ Revision: 1388158
- drm/i915/dp: revert back to max link rate and lane count on eDP
- add current -stable queue

* Tue Apr 09 2019 tmb <tmb> 5.0.7-3.mga7
+ Revision: 1387787
- EDAC/amd64: Add Family 17h Model 30h PCI IDs
- drm/i915/gvt: do not let pin count of shadow mm go negative
- r8169: disable ASPM again
- netfilter: nf_tables: add missing ->release_ops() in error path of newrule()
- netfilter: nf_tables: use-after-free in dynamic operations
- netfilter: nft_compat: use .release_ops and remove list of extension

* Sat Apr 06 2019 tmb <tmb> 5.0.7-2.mga7
+ Revision: 1386505
- mm: writeback: use exact memcg dirty counts
- x86/asm: Remove dead __GNUC__ conditionals
- x86/asm: Use stricter assembly constraints in bitops
- update aufs patch
- update AMD Fam 17h perf events support
- update vboxsf patch
- update WireGuard to 0.0.20190406

* Sat Apr 06 2019 tmb <tmb> 5.0.7-1.mga7
+ Revision: 1386345
- update to 5.0.7 final

* Fri Apr 05 2019 tmb <tmb> 5.0.6-2.mga7
+ Revision: 1386088
- update to 5.0.7-rc1+
- block: Revert v5.0 blk_mq_request_issue_directly() changes

* Wed Apr 03 2019 tmb <tmb> 5.0.6-1.mga7
+ Revision: 1385519
- update to 5.0.6

* Fri Mar 29 2019 tmb <tmb> 5.0.5-2.mga7
+ Revision: 1381186
- add current -stable queue
- make hardware Random Number Generator Core support builtin
- enable Timer IOMEM HW Random Number Generator support

* Wed Mar 27 2019 tmb <tmb> 5.0.5-1.mga7
+ Revision: 1380691
- platform/x86: ideapad-laptop: Fix no_hw_rfkill_list for
  Lenovo RESCUER R720-15IKBN
- drm: allow render capable master with DRM_AUTH ioctls
- Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt
- Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer
- netfilter: nf_tables: fix set double-free in abort path
- update to 5.0.5 final

* Tue Mar 26 2019 tmb <tmb> 5.0.4-2.mga7
+ Revision: 1380414
- efifb: downgrade EFI_MEMMAP is not enabled message
- update to 5.0.5-rc1

* Sat Mar 23 2019 tmb <tmb> 5.0.4-1.mga7
+ Revision: 1379842
- iommu/iova: Fix tracking of recently failed iova address
- iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE
- udf: Fix crash on IO error during truncate
- update to 5.0.4 final

* Fri Mar 22 2019 tmb <tmb> 5.0.3-2.mga7
+ Revision: 1379649
- update vboxsf for vboxguest requestor support addition
- virt: vbox: Implement passing requestor info to the host for VirtualBox 6.0.x
- update to 5.0.4-rc1

* Tue Mar 19 2019 tmb <tmb> 5.0.3-1.mga7
+ Revision: 1378850
- update to 5.0.3
  * drop merged patches

* Mon Mar 18 2019 tmb <tmb> 5.0.2-2.mga7
+ Revision: 1378675
- add current -stable queue

* Thu Mar 14 2019 tmb <tmb> 5.0.2-1.mga7
+ Revision: 1375907
- update to 5.0.2
- update dkms conflicts

* Sun Mar 10 2019 tmb <tmb> 5.0.1-1.mga7
+ Revision: 1373539
- update to 5.0.1 final

* Fri Mar 08 2019 tmb <tmb> 5.0.0-3.mga7
+ Revision: 1372927
- iwlwifi: add PCI IDs for the 22260 device series
- iwlwifi: add new cards for 22560, 9260 and killer series
- scripts/gdb: replace flags (MS_xyz -> SB_xyz)
- x86, retpolines: raise limit for generating indirect calls from switch-case
- update to 5.0.1-rc1
- vgacon: make nokmsboot trigger nomodeset
- add current -stable queue

* Wed Mar 06 2019 tmb <tmb> 5.0.0-1.mga7
+ Revision: 1372070
- update arm64 defconfig
- update dkms conflicts
- update filelists
- update vboxfs for kernel 5.0
- switch  ipt_IWFLOG from obsolete do_gettimeofday() to Y2038 safe timekeeping
- adjust 3rdparty rtl8723, rtl8812au for access_ok() changes in 5.0
- rebase mrprpoper patch
- fix up 3rdparty Kconfig generator
- update defconfigs
- rediff Amd perf PMU events support
- rediff powerpc selftest reference
- rediff 3rdparty merge
- rebase shuttle-wmi driver
- rebase i915 slow boot fixes
- update aufs for kernel 5.0
- update to 5.0
  * drop merged stable patches

* Sun Mar 03 2019 tmb <tmb> 4.20.13-3.mga7
+ Revision: 1371228
- add more -stable queue fixes
- enable DEBUG_WX
- i386: enable IO_STRICT_DEVMEM
- disable CONFIG_DEVKMEM

* Fri Mar 01 2019 tmb <tmb> 4.20.13-2.mga7
+ Revision: 1370723
- x86/boot/compressed/64: Do not read legacy ROM on EFI system
- add current -stable queue
- update WireGuard to 0.0.20190227

* Wed Feb 27 2019 tmb <tmb> 4.20.13-1.mga7
+ Revision: 1370346
- update to 4.20.13
  * drop merged patches
- drm/vblank: Allow dynamic per-crtc max_vblank_count
- drm/i915: Don't try to use the hardware frame counter with i965gm TV output

* Mon Feb 25 2019 tmb <tmb> 4.20.12-2.mga7
+ Revision: 1370025
- net: validate untrusted gso packets without csum offload
- net: avoid false positives in untrusted gso validation
- add current -stable queue

* Sat Feb 23 2019 tmb <tmb> 4.20.12-1.mga7
+ Revision: 1369515
- net: revert "bridge: do not add port to router list when receives query with
  source 0.0.0.0"
- ARM: 8834/1: Fix: kprobes: optimized kprobes illegal instruction
- update to 4.20.12

* Thu Feb 21 2019 tmb <tmb> 4.20.11-2.mga7
+ Revision: 1369020
- add current -net stable queue
- r8152: Add support for MAC address pass through on RTL8153-BD
- amdgpu: disable bulk moves for now

* Wed Feb 20 2019 tmb <tmb> 4.20.11-1.mga7
+ Revision: 1368875
- x86/CPU/AMD: Set the CPB bit unconditionally on F17h
- sky2: increase D3 delay for suspend/resume
- update to 4.20.11 final

* Mon Feb 18 2019 tmb <tmb> 4.20.10-2.mga7
+ Revision: 1368277
- update to 4.20.11-rc1

* Mon Feb 18 2019 tmb <tmb> 4.20.10-1.mga7
+ Revision: 1368146
- add current -stable queue
- update to 4.20.10
  * drop merged patch

* Fri Feb 15 2019 tmb <tmb> 4.20.9-1.mga7
+ Revision: 1367161
- Revert 'exec: load_script: don't blindly truncate shebang string'
- update to 4.20.9 final

* Thu Feb 14 2019 tmb <tmb> 4.20.8-2.mga7
+ Revision: 1366892
- update to 4.20.9-rc1

* Tue Feb 12 2019 tmb <tmb> 4.20.8-1.mga7
+ Revision: 1366230
- update ndiswrapper to 1.62
- update to 4.20.8
  * drop merged patches

* Mon Feb 11 2019 tmb <tmb> 4.20.7-3.mga7
+ Revision: 1365310
- sync with 4.20.8-rc1+

* Sun Feb 10 2019 tmb <tmb> 4.20.7-2.mga7
+ Revision: 1365045
- add current -stable queue

* Sat Feb 09 2019 tmb <tmb> 4.20.7-1.mga7
+ Revision: 1364366
- x86_64: allow 128 cpus on desktop and 256 on server kernels
- update to 4.20.7 final

* Tue Feb 05 2019 tmb <tmb> 4.20.6-3.mga7
+ Revision: 1363386
- Revert "mm: don't reclaim inodes with many attached pages"
- Revert "mm: slowly shrink slabs with a relatively small number of objects"
- update to 4.20.7-rc1

* Sat Feb 02 2019 tmb <tmb> 4.20.6-2.mga7
+ Revision: 1362405
- gfs2: Revert 'Fix loop in gfs2_rbm_find'
- add current -stable queue
- update WireGuard to 0.0.20190123

* Fri Feb 01 2019 kekepower <kekepower> 4.20.6-1.mga7
+ Revision: 1362265
- Update to 4.20.6

* Tue Jan 22 2019 tmb <tmb> 4.20.4-1.mga7
+ Revision: 1359606
- update to 4.20.4 final
- r8169: Add support for new Realtek Ethernet 0x2502, 0x2600
- net: clear skb->tstamp in bridge forwarding path

* Mon Jan 21 2019 tmb <tmb> 4.20.3-3.mga7
+ Revision: 1358724
- drm/amdgpu: disable system memory page tables for now (bko #201727)
- update to 4.20.4-rc1

* Sat Jan 19 2019 tmb <tmb> 4.20.3-2.mga7
+ Revision: 1358155
- update -devel filelists
- 3rdparty/rtl8723de: fix IEEE80211_MAX_AMPDU_BUF re-define
- enable selinux support, but keep it deactivated on boot by default
  (to activate it, boot with selinux=1)
- arm: fix up placing the processor tables in the .rodata section
- add current -stable queue
- drop armv5tl support
- stop recommending crda, it's not needed since kernel 4.15 (mga #24091)
- spec cleanups
- drop obsolete extstable support

* Thu Jan 17 2019 tmb <tmb> 4.20.3-1.mga7
+ Revision: 1357645
- add current -stable queue
- update to 4.20.3

* Tue Jan 15 2019 tmb <tmb> 4.20.2-3.mga7
+ Revision: 1357212
- update to 4.20.3-rc1

* Mon Jan 14 2019 tmb <tmb> 4.20.2-2.mga7
+ Revision: 1356880
- add current -stable queue
- update firmware conflicts

* Sun Jan 13 2019 tmb <tmb> 4.20.2-1.mga7
+ Revision: 1355903
- update dkms conflicts
- update and re-enable rtl8723de wifi driver
- update to 4.20.2 final

* Sat Jan 12 2019 tmb <tmb> 4.20.1-1.mga7
+ Revision: 1355556
- update perf file removal list
- update mrproper patch
- update filelists
- temporarily disable CONFIG_RTL8723DE
- update defconfigs
- update to 4.20.2-rc1
- fix aufs version
- rebase 3rdparty merge
- update aufs to 4.20
- drop merged patches
- update to 4.20.1

* Wed Jan 09 2019 tmb <tmb> 4.19.14-1.mga7
+ Revision: 1353853
- update to 4.19.14

* Sat Dec 29 2018 tmb <tmb> 4.19.13-1.mga7
+ Revision: 1346591
- update to 4.19.13 final

* Fri Dec 28 2018 tmb <tmb> 4.19.12-3.mga7
+ Revision: 1345711
- update to 4.19.13-rc1

* Sun Dec 23 2018 tmb <tmb> 4.19.12-2.mga7
+ Revision: 1344588
- Revert 'vfs: Allow userns root to call mknod on owned filesystems'
- x86/mm: Fix guard hole handling
- kernel/dma/direct: Do not include SME mask in the DMA supported check

* Fri Dec 21 2018 tmb <tmb> 4.19.12-1.mga7
+ Revision: 1344252
- update WireGuard to 0.0.20181218
- rtlwifi: Fix leak of skb when processing C2H_BT_INFO
- update to 4.19.12 final

* Thu Dec 20 2018 tmb <tmb> 4.19.11-2.mga7
+ Revision: 1343784
- Revert 'fs/iomap.c: get/put the page in iomap_page_create/release()'
- mt76x0: mark 802.11w as supported
- drm/amdgpu: Add new VegaM pci id
- update to 4.19.12-rc1

* Wed Dec 19 2018 tmb <tmb> 4.19.11-1.mga7
+ Revision: 1343085
- Backport for 'cache line starvation on x86'
- update conflict on radeon-firmware
- update to 4.19.11 final

* Tue Dec 18 2018 tmb <tmb> 4.19.10-2.mga7
+ Revision: 1342600
- update firmware conflicts
- update to 4.19.11-rc1

* Mon Dec 17 2018 tmb <tmb> 4.19.10-1.mga7
+ Revision: 1342126
- update to 4.19.10 final
- mm, memcg: fix reclaim deadlock with writeback
- userfaultfd: check VM_MAYWRITE was set after verifying the uffd is registered
- fs/iomap.c: get/put the page in iomap_page_create/release()
- aio: fix spectre gadget in lookup_ioctx
- arm: enable BRCMFMAC (mga#24015)
- x86/vdso: Pass --eh-frame-hdr to the linker

* Fri Dec 14 2018 tmb <tmb> 4.19.9-2.mga7
+ Revision: 1341257
- Revert 'ACPICA: AML interpreter: add region addresses in global list during initialization'
- update to 4.19.10-rc1

* Thu Dec 13 2018 tmb <tmb> 4.19.9-1.mga7
+ Revision: 1341053
- Input: elantech - Disable elan-i2c for P52 and P72
- add current -stable queue
- update to 4.19.9 final

* Tue Dec 11 2018 tmb <tmb> 4.19.8-4.mga7
+ Revision: 1340265
- ALSA: hda/realtek - Fixed headphone issue for ALC700
- ALSA: hda/realtek - Fix the mute LED regresion on Lenovo X1 Carbon
- ALSA: fireface: fix reference to wrong register for clock configuration
- ALSA: hda/realtek: ALC294 mic and headset-mode fixups for ASUS X542UN
- ALSA: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294
- ALSA: hda/realtek: Enable audio jacks of ASUS UX433FN/UX333FA with ALC294
- update to 4.19.9-rc1

* Tue Dec 11 2018 tmb <tmb> 4.19.8-3.mga7
+ Revision: 1340222
- add more fixes from -stable queue
- block: restore tape support (regression added in upstream 4.19.5)

* Mon Dec 10 2018 tmb <tmb> 4.19.8-2.mga7
+ Revision: 1339770
-  Revert 'x86/e820: put !E820_TYPE_RAM regions into memblock.reserved'
- mm: zero remaining unavailable struct pages
- add current -stable queue

* Sat Dec 08 2018 tmb <tmb> 4.19.8-1.mga7
+ Revision: 1338938
- add more amd vega10 pci ids
- update to 4.19.8 final
- update microde conflicts
- drm/amdgpu: update mc firmware image for polaris12 variants
- drm/amdgpu/gmc8: update MC firmware for polaris
- drm/amdgpu/gmc8: always load MC firmware in the driver
- drm/amdgpu/powerplay: Apply avfs cks-off voltages on Polaris30

* Fri Dec 07 2018 tmb <tmb> 4.19.7-2.mga7
+ Revision: 1338839
- blk-mq: punt failed direct issue to dispatch list
- drm/i915: Downgrade Gen9 Plane WM latency error
- update to 4.19.8-rc1

* Wed Dec 05 2018 tmb <tmb> 4.19.7-1.mga7
+ Revision: 1338595
- blk-mq: fix corruption with direct issue
- btrfs: tree-checker: Don't check max block group size as current max
  chunk size limit is unreliable
- ALSA: usb-audio: Fix UAF decrement if card has no live interfaces
  in card.c (CVE-2018-19824)
- revert last commit, wrong tree
- Kbuild: suppress packed-not-aligned warning for default setting only
- disable stringop truncation warnings for now
- update to 4.19.7 final

* Tue Dec 04 2018 tmb <tmb> 4.19.6-4.mga7
+ Revision: 1338318
- update to 4.19.7-rc1

* Mon Dec 03 2018 tmb <tmb> 4.19.6-3.mga7
+ Revision: 1338014
- add current -stable queue
- enable MEMCG on desktop kernels (mga#23938)

* Sun Dec 02 2018 tmb <tmb> 4.19.6-2.mga7
+ Revision: 1337510
- revert 'block: fix single range discard merge'
- fs: fix lost error code in dio_complete
- block: fix single range discard merge
- ACPI/IORT: Fix iort_get_platform_device_domain() uninitialized pointer value
- PCI: Fix incorrect value returned from pcie_get_speed_cap()
- add huge_memory and khugepaged fixes from upstream 4.20-rc

* Sat Dec 01 2018 tmb <tmb> 4.19.6-1.mga7
+ Revision: 1337073
- drm: set is_master to 0 upon drm_new_set_master() failure
- update to 4.19.6
- drm/i915: Prevent machine hang from Broxton's vtd w/a and error capture
+ tv <tv>
- add a warning for updating drakx/kernel/list_modules.pm on kernel updates

* Thu Nov 29 2018 tmb <tmb> 4.19.5-3.mga7
+ Revision: 1336778
- ALSA: hda/realtek - Support ALC300
- ALSA: hda: Add support for AMD Stoney Ridge
- update to 4.19.6-rc1

* Wed Nov 28 2018 tmb <tmb> 4.19.5-2.mga7
+ Revision: 1336495
- add current -stable queue
- x86/MCE/AMD: Fix the thresholding machinery initialization order

* Tue Nov 27 2018 tmb <tmb> 4.19.5-1.mga7
+ Revision: 1336133
- update to 4.19.5

* Fri Nov 23 2018 tmb <tmb> 4.19.4-1.mga7
+ Revision: 1333540
- update WireGueard to 0.0.20181119
- drm/i915: Replace some PAGE_SIZE with I915_GTT_PAGE_SIZE
- update to 4.19.4 final

* Thu Nov 22 2018 tmb <tmb> 4.19.3-2.mga7
+ Revision: 1333204
- update to 4.19.4-rc1

* Wed Nov 21 2018 tmb <tmb> 4.19.3-1.mga7
+ Revision: 1332642
- revert 'x86/speculation: Enable cross-hyperthread spectre v2 STIBP
  mitigation' as it should never be enabled by default according to
  AMD and Intel (if someone wants this protection, disable HT/SMT
  in BIOS/UEFI)
- update to 4.19.3
  * drop merged patches

* Fri Nov 16 2018 tmb <tmb> 4.19.2-3.mga7
+ Revision: 1330141
- add more fixes from -stable queue

* Wed Nov 14 2018 tmb <tmb> 4.19.2-2.mga7
+ Revision: 1329919
- add current -stable queue

* Tue Nov 13 2018 tmb <tmb> 4.19.2-1.mga7
+ Revision: 1329839
- update to 4.19.2
  * drop merged patches

* Sun Nov 11 2018 tmb <tmb> 4.19.1-4.mga7
+ Revision: 1329538
- add more fixes from current -stable queue

* Sat Nov 10 2018 tmb <tmb> 4.19.1-3.mga7
+ Revision: 1329385
- bpf: wait for running BPF programs when updating map-in-map
- drm: Check if primary mst is null
- net: sched: Remove TCA_OPTIONS from policy
- xen/blkfront: avoid NULL blkfront_info dereference on device removal
- add current -stable queue

* Fri Nov 09 2018 tmb <tmb> 4.19.1-2.mga7
+ Revision: 1329224
- add fixes from sashas autosel queue
- update dkms conflicts

* Thu Nov 08 2018 tmb <tmb> 4.19.1-1.mga7
+ Revision: 1328865
- remove perf files we dont ship
- add current -stable queue
- rediff mrproper patch
- fix 3rdparty rtl8723 driver to build with 4.19 series kernels
- update 3rdparty rtl8812au support for 4.19 series kernels
- switch on full PAE for 32bit desktop kernels too as its needed for
  PTI and the overhead is negligable nowdays
- update defconfigs
- rediff 3rdparty merge
- update aufs to 4.19
- drop merged patches
- update to 4.19.1

* Sun Oct 21 2018 tmb <tmb> 4.18.16-2.mga7
+ Revision: 1323439
- disable virtualbox microcode load hang fix for now,
  as it breaks suspend/resume on real hw
- update defconfig for GCC_PLUGINS

* Sat Oct 20 2018 tmb <tmb> 4.18.16-1.mga7
+ Revision: 1322924
- update WireGuard to 0.0.20181018
- update to 4.18.16
  * drop merged patches

* Thu Oct 18 2018 tmb <tmb> 4.18.15-1.mga7
+ Revision: 1322049
- Revert "vfs: fix freeze protection in mnt_want_write_file() for overlayfs"
- scsi: sd: don't crash the host on invalid commands
- update to 4.18.15
  * drop merged patches

* Sun Oct 14 2018 tmb <tmb> 4.18.14-2.mga7
+ Revision: 1320268
- ALSA: hda - Add mic quirk for the Lenovo G50-30
- Input: elan_i2c - add ACPI ID for Lenovo IdeaPad 330-15IGM
- mm/mmap.c: don't clobber partially overlapping VMA with MAP_FIXED_NOREPLACE
- mm/thp: fix call to mmu_notifier in set_pmd_migration_entry() v2
- PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk
- drop the revert of 'drm/atomic: Handling the case when setting old crtc
  for plane', as a better fix landed in upstream 4.18.8

* Sat Oct 13 2018 tmb <tmb> 4.18.14-1.mga7
+ Revision: 1320052
- update to 4.18.14

* Wed Oct 10 2018 tmb <tmb> 4.18.13-1.mga7
+ Revision: 1319330
- update WireGuard to 0.0.20181007
- update to 4.18.13
  * drop merged patch

* Thu Oct 04 2018 tmb <tmb> 4.18.12-1.mga7
+ Revision: 1317360
- update to 4.18.12
  * drop merged patches

* Mon Oct 01 2018 tmb <tmb> 4.18.11-2.mga7
+ Revision: 1314339
- add current -stable queue

* Sat Sep 29 2018 tmb <tmb> 4.18.11-1.mga7
+ Revision: 1311737
- dont try to load cpu microcode on virtualbox (mga#21553)
- update to 4.18.11
  * drop merged patches

* Wed Sep 26 2018 tmb <tmb> 4.18.10-1.mga7
+ Revision: 1306009
- add current -stable -net fixes from DaveM
- Revert "uapi/linux/keyctl.h: don't use C++ reserved keyword as a
  struct member name"
- sched/fair: Fix vruntime_normalized() for remote non-migration wakeup
- update WireGuard to 0.0.20180925
- update to 4.18.10
  * drop merged patches

* Sat Sep 22 2018 tmb <tmb> 4.18.9-2.mga7
+ Revision: 1296315
- add current -stable queue
- update removal of perf example code
- add current -stable queue
- update to 4.18.9
  * drop merged patches

* Sat Sep 15 2018 tmb <tmb> 4.18.8-1.mga7
+ Revision: 1259034
- update to 4.18.8
  * drop merged patches

* Wed Sep 12 2018 tmb <tmb> 4.18.7-2.mga7
+ Revision: 1258599
- 8169: add support for NCube 8168 network card
- kvm: nVMX: Fix fault vector for VMX operation at CPL > 0
- platform/x86: asus-nb-wmi: Add keymap entry for lid flip action on UX360
- ipv4: tcp: send zero IPID for RST and ACK sent in SYN-RECV and TIME-WAIT state
- disable all SPI_INTEL_SPI configs for potential bios corrupting bug (mga#23560)

* Sun Sep 09 2018 tmb <tmb> 4.18.7-1.mga7
+ Revision: 1257976
- update to 4.18.7

* Wed Sep 05 2018 tmb <tmb> 4.18.6-1.mga7
+ Revision: 1257336
- update WireGuard to 0.0.20180904
- hwmon: (k10temp) Support all Family 15h Model 6xh and Model 7xh processors
- drm/i915/bdw: Increase IPS disable timeout to 100ms
- Revert "drm/atomic: Handling the case when setting old crtc for plane"
- HID: multitouch: fix Elan panels with 2 input modes declaration
- HID: core: fix grouping by application
- drop: revert 'HID: generic: create one input report per application type'
- update for 4.18.6
  * drop merged patches

* Fri Aug 31 2018 tmb <tmb> 4.18.5-3.mga7
+ Revision: 1255958
- Partially revert 'HID: generic: create one input report per application type'
- fix -stable queue printk breakage
- add current -stable queue
- make CRYPTO_CRCT10DIF_PCLMUL builtin on x86_64 for better CRC performance on SSE4.2 capable hw

* Wed Aug 29 2018 tmb <tmb> 4.18.5-2.mga7
+ Revision: 1255504
- b43: Fix regression in kernel 4.18
- iommu/arm-smmu: Error out only if not enough context interrupts
- x86/irqflags: mark native_restore_fl extern inline
- mei: don't update offset in write
- scripts/kernel-doc: fix perl warnings
- xprtrdma: Fix disconnect regression
- revert 'clocksource: Remove kthread' for now as it causes boot hangs
  on older systems

* Fri Aug 24 2018 tmb <tmb> 4.18.5-1.mga7
+ Revision: 1253859
- x86/kvm/vmx: Remove duplicate l1d flush definitions
- x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit
- x86/speculation/l1tf: Fix off-by-one error when warning that system
  has too much RAM
- scsi: libsas: dynamically allocate and free ata host
- update to 4.18.5

* Thu Aug 23 2018 tmb <tmb> 4.18.4-1.mga7
+ Revision: 1253586
- update to 4.18.5-rc1
- update dkms conflicts
- remove perf example files
- rebase mrproper patch
- update vboxsf for kernel 4.18
- update defconfigs
- rebase 3rdparty merge
- rebase crypto ccp timeout fix
- disable ancient Ali M5229 quirk
- update aufs to 4.18
- drop merged patches
- update to 4.18.4

* Wed Aug 22 2018 tmb <tmb> 4.17.18-1.mga7
+ Revision: 1253406
- x86/mm/32: Initialize the CR4 shadow before __flush_tlb_all()
- mm: Allow non-direct-map arguments to free_reserved_area()
- x86/mm/init: Pass unconverted symbol addresses to free_init_pages()
- x86/mm/init: Add helper for freeing kernel image pages
- x86/mm/init: Remove freed kernel image areas from alias mapping
- update to 4.17.18
- crypto: ccp: add timeout support in the SEV command

* Sat Aug 18 2018 tmb <tmb> 4.17.17-1.mga7
+ Revision: 1252510
- upate to 4.17.17

* Sat Aug 18 2018 tmb <tmb> 4.17.16-1.mga7
+ Revision: 1252353
- x86/speculation/l1tf: Exempt zeroed PTEs from inversion
- update to 4.17.16
  * drop merged patches

* Thu Aug 16 2018 tmb <tmb> 4.17.15-3.mga7
+ Revision: 1252046
- add more -stable queue fixes

* Thu Aug 16 2018 tmb <tmb> 4.17.15-2.mga7
+ Revision: 1251951
- ipv4: frags: precedence bug in ip_expire()
- x86: i8259: Add missing include file
- x86/platform/UV: Mark memblock related init code and data correctly
- x86/mm/pti: Clear Global bit more aggressively
- xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits
- x86/mm: Disable ioremap free page handling on x86-PAE

* Thu Aug 16 2018 tmb <tmb> 4.17.15-1.mga7
+ Revision: 1251832
- fix CVE-2018-539i
- x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled
- update WireGuard to 0.0.20180809
- update to 4.17.15
  * drop merged patches

* Sun Aug 12 2018 tmb <tmb> 4.17.14-3.mga7
+ Revision: 1251107
- Mark HI and TASKLET softirq synchronous
- stop_machine: Disable preemption after queueing stopper threads
- sched/deadline: Update rq_clock of later_rq when pushing a task
- nvme: Fix a race condition related to creation of /dev/nvme0n<x>
- hwmon: add support for AMD ThreadRipper 29xx

* Thu Aug 09 2018 tmb <tmb> 4.17.14-1.mga7
+ Revision: 1250717
- update to 4.17.14

* Mon Aug 06 2018 tmb <tmb> 4.17.13-1.mga7
+ Revision: 1248416
- fix disabling of python bytecompiling that changed with rpm-mageia-setup-2.29-1.mga7
- perf: add AMD PMU events for AMD Family 17h
- update to 4.17.13

* Fri Aug 03 2018 tmb <tmb> 4.17.12-1.mga7
+ Revision: 1247040
- update to 4.17.12
  * drop merged patches
- update WireGuard to 0.0.20180802

* Sun Jul 29 2018 tmb <tmb> 4.17.11-1.mga7
+ Revision: 1245783
- ACPICA: AML Parser: ignore control method status in module-level code
- ACPI / LPSS: Avoid PM quirks on suspend and resume from hibernation
- update to 4.17.11

* Wed Jul 25 2018 tmb <tmb> 4.17.10-1.mga7
+ Revision: 1245204
- update to 4.17.10

* Sun Jul 22 2018 tmb <tmb> 4.17.9-1.mga7
+ Revision: 1244899
- iwlwifi: add more card IDs for 9000 series
- update to 4.17.9
+ pterjan <pterjan>
- List aarch64 desktop config in create_configs
- Enable -desktop on aarch64, several packages want it, and cleanup overrides with default value

* Wed Jul 18 2018 tmb <tmb> 4.17.8-2.mga7
+ Revision: 1244193
- fix typo in radeon-firmware conflict

* Wed Jul 18 2018 tmb <tmb> 4.17.8-1.mga7
+ Revision: 1244131
- update conflicts on radeon-firmware and grub2
- random: mix rdrand with entropy sent in from userspace
- update to 4.17.8

* Tue Jul 17 2018 tmb <tmb> 4.17.7-1.mga7
+ Revision: 1243976
- mm: dont do zero_resv_unavail if memmap is not allocated
- update to 4.17.7
- enable SMARTPQI support (mga#23305)
- add current -stable queue

* Sat Jul 14 2018 tmb <tmb> 4.17.6-3.mga7
+ Revision: 1243713
- mm: zero unavailable pages before memmap init
- ext4: check for allocation block validity with block group locked

* Sat Jul 14 2018 tmb <tmb> 4.17.6-2.mga7
+ Revision: 1243526
- add current -stable queue

* Wed Jul 11 2018 tmb <tmb> 4.17.6-1.mga7
+ Revision: 1243104
- update to 4.17.6

* Sun Jul 08 2018 tmb <tmb> 4.17.5-1.mga7
+ Revision: 1242666
- update WireGuard to 0.0.20180708
- staging: r8822be: Fix RTL8822be can't find any wireless AP
- dell-laptop: fix backlight detection
- update to 4.17.5
- re-enable arm64
+ pterjan <pterjan>
- Commit the forgotten arm64 config...

* Fri Jul 06 2018 tmb <tmb> 4.17.4-2.mga7
+ Revision: 1242352
- ACPI / battery: Safe unregistering of hooks
- ACPI: fix Spurious wakeup / reboot with power button
- PCI / ACPI / PM: Resume bridges w/o drivers on suspend-to-RAM
- update WireGuard to 0.0.20180625
- update to 4.17.5-rc1
- disable arm64 for now (missing config)
+ pterjan <pterjan>
- Get the package to build on aarch64, config is still quite random

* Tue Jul 03 2018 tmb <tmb> 4.17.4-1.mga7
+ Revision: 1241469
- update to 4.17.4
- ACPICA: Drop leading newlines from error messages

* Mon Jul 02 2018 tmb <tmb> 4.17.3-2.mga7
+ Revision: 1241320
- update to 4.17.4-rc1
- enable Mellanox5 support (mga#23263)
- update conflicts on dkms-virtualbox
- update conflicts on dkms-xtables-addons

* Tue Jun 26 2018 tmb <tmb> 4.17.3-1.mga7
+ Revision: 1239833
- update to 4.17.3

* Fri Jun 22 2018 tmb <tmb> 4.17.2-4.mga7
+ Revision: 1239069
- add current -stable queue
- add vboxsf (v7) support

* Wed Jun 20 2018 tmb <tmb> 4.17.2-3.mga7
+ Revision: 1238431
- ACPICA: AML parser: attempt to continue loading table after error
- add current -stable net queue

* Mon Jun 18 2018 tmb <tmb> 4.17.2-2.mga7
+ Revision: 1237939
- enable HARDENED_USERCOPY_FALLBACK for now so 3rdparty drivers like nVidia should still work

* Sat Jun 16 2018 tmb <tmb> 4.17.2-1.mga7
+ Revision: 1237293
- update to 4.17.2

* Thu Jun 14 2018 tmb <tmb> 4.17.1-2.mga7
+ Revision: 1236928
- update WireGuard to 0.0.20180613
- update and re-enable rtl8723de
- ndiswrapper: fix build with 4.15+ (arch) and re-enable it
- ACPI / LPSS: Avoid PM quirks on suspend and resume from S3
- update to 4.17.2-rc1

* Wed Jun 13 2018 tmb <tmb> 4.17.1-1.mga7
+ Revision: 1236741
- fix devel/source filelists
- temporarily disable NDISWRAPPER and RTL8723DE
- update exports for aufs modular support
- update mrproper patch
- update README for passing ARCH during kernel build
- always pass ARCH during kernel builds
- update filelists
- update buildrequires
- disable python bytecompiling
- update defconfigs
- rebase 3rdparty,usbhif,tools, mgalogo patches to apply cleanly
- disable disabling xt_addrtype BROADCAST warning for now
- update aufs to 4.17
- drop ancient 3rdparty acerhk, aes2501, rfswitch patches (been disabled for a long time)
- drop broken ancient ppscsi patches (has been disabled for ages...)
- drop merged/obsolete patches
- disable PTI for 32bit patchset, needs to be rebased
- update to 4.17.1

* Mon May 28 2018 tmb <tmb> 4.14.44-2.mga7
+ Revision: 1232843
- Revert 'USB: OHCI: Fix NULL dereference in HCDs using HCD_LOCAL_MEM'
- Revert 'ipc/shm: Fix shmat mmap nil-page protection'
- ipc/shm: fix shmat() nil address after round-down when remapping
- brcmfmac: Fix check for ISO3166 code
- brcmfmac: reject too long PSK
- r8152: fix tx packets accounting
- KVM/VMX: Expose SSBD properly to guests
- PCI: Add function 1 DMA alias quirk for Marvell 88SE9220

* Fri May 25 2018 tmb <tmb> 4.14.44-1.mga7
+ Revision: 1232194
- revert fixes for CVE-2018-1108 for now as it prevents normal
  operation on several systems (mga#23060)
- update to 4.14.44

* Tue May 22 2018 tmb <tmb> 4.14.43-1.mga7
+ Revision: 1231596
- add current -stable queue
- update to 4.14.43

* Sun May 20 2018 tmb <tmb> 4.14.42-1.mga7
+ Revision: 1230841
- update conflicts on microcode and firmware to get newest ones in initrd
- update WireGuard to 0.0.20180519
- add current -stable queue
- update to 4.14.42
+ blino <blino>
- arm: enable DRM_FBDEV_EMULATION for framebuffer console with KMS (e.g. vc4)
- arm: enable DRM_LOAD_EDID_FIRMWARE to allow loading custom EDID

* Sat May 12 2018 tmb <tmb> 4.14.40-1.mga7
+ Revision: 1228469
- drm/nouveau/bl: fix backlight regression (mga#23015)
- add current -stable queue
- update to 4.14.40
  * drop merged patches

* Mon Apr 30 2018 tmb <tmb> 4.14.38-1.mga7
+ Revision: 1223890
- update WireGuard to 0.0.20180420
- add current -stable queue
- PCI: Add ACS quirk for Intel 7th & 8th Gen mobile
- PCI: Add ACS quirk for Intel 300 series
- libata: fix blacklisting of queued TRIM for Micron M500IT
- tools/lib/subcmd/pager.c: do not alias select() params
- objtool, perf: Fix GCC 8 -Wrestrict error
- ALSA: hda - Fix incorrect usage of IS_REACHABLE()
- hwmon: (k10temp) Add temperature offset for Ryzen 2700X
- hwmon: (k10temp) Add support for AMD Ryzen w/ Vega graphics
- update to 4.14.38
  * drop merged patches
+ blino <blino>
- arm: fix /proc/config.gz (not a module)
- arm: enable CMA (for VC4 DRM driver)
- arm: enable VC4 DRM (for Raspberry Pi) and HDMI CEC
- create multi-platform kernel for ARMv7 (no LPAE, no Thumb2-kernel)
- arm: drop iop32x (obsolete) and versatile (handled in multi-platform) configs
- build initrd for ARM arch (needed for LABEL/UUID root devices)

* Sat Apr 14 2018 tmb <tmb> 4.14.34-1.mga7
+ Revision: 1218528
- ext4: revert calls to new i_version API as it is not in 4.14
- update WireGuard to 0.0.20180413
- PTI/x32: x86/pgtable: Don't set huge PUD/PMD on non-leaf entries
- ext4: fail ext4_iget for root directory if unallocated (CVE-2018-1092)
- ext4: add validity checks for bitmap block numbers (CVE-2018-1093)
- ext4: always initialize the crc32c checksum driver (CVE-2018-1094)
- ext4: limit xattr size to INT_MAX (CVE-2018-1095)
- ext4: don't allow r/w mounts if metadata blocks overlap the superblock
- ext4: force revalidation of directory pointer after seekdir(2)
- vhost: fix vhost_vq_access_ok() log check
- netfilter: ipset: Missing nfnl_lock()/nfnl_unlock() is added to ip_set_net_exit()
- update to 4.14.34
  * drop merged patches

* Sun Apr 08 2018 tmb <tmb> 4.14.33-1.mga7
+ Revision: 1216220
- add post Spectre fixes for microcode loading stability issues
- revert 3rdparty/rtl8812au driver update to v5.2.20 as it broke existing hw support (mga#22865)
- provide installonlypkg(kernel) for dnf/packagekit
- update to 4.14.33

* Sat Mar 31 2018 tmb <tmb> 4.14.32-1.mga7
+ Revision: 1213962
- update to 4.14.32

* Sun Mar 25 2018 tmb <tmb> 4.14.30-3.mga7
+ Revision: 1212474
- add more fixes from -stable queue
- fix -devel filelist
- release 4.14.30-2
- add current -stable queue
- update 3rdparty/rtl8812au to v5.2.20 (mga#22808)

* Sun Mar 25 2018 tmb <tmb> 4.14.30-1.mga7
+ Revision: 1212185
- add current -stable queue
- update to 4.14.30 final

* Fri Mar 23 2018 tmb <tmb> 4.14.29-1.mga7
+ Revision: 1211629
- update to 4.14.30-rc1
- tcp: reset sk_send_head in tcp_write_queue_purge
- update rtl8812au driver
- update to 4.14.29
- hwmon: (k10temp) Correct model name for Ryzen 1600X
- hwmon: (k10temp) Add temperature offset for Ryzen 1900X
- hwmon: (k10temp) Only apply temperature offset if result is positive

* Mon Mar 19 2018 tmb <tmb> 4.14.28-1.mga7
+ Revision: 1210398
- recommend microcode for security fixes
- add current -stable queue
- update to 4.14.28 final
- update PTI for x32 to revision 4

* Fri Mar 16 2018 tmb <tmb> 4.14.27-2.mga7
+ Revision: 1209894
- x86/speculation: Remove Skylake C2 from Speculation Control microcode blacklist
- update to 4.14.28-rc1

* Fri Mar 16 2018 tmb <tmb> 4.14.27-1.mga7
+ Revision: 1209822
- update to 4.14.27
- drop merged patches
- update conflicts on microcode

* Fri Mar 09 2018 tmb <tmb> 4.14.25-1.mga7
+ Revision: 1207854
- KVM: x86: fix backward migration with async_PF
- loop: Fix lost writes caused by missing flag
- bpf: fix mlock precharge on arraymaps
- bpf: fix memory leak in lpm_trie map_free callback function
- bpf: fix rcu lockdep warning for lpm_trie map_free callback
- bpf, x64: implement retpoline for tail call
- bpf, arm64: fix out of bounds access in tail call
- bpf: add schedule points in percpu arrays management
- bpf: allow xadd only on aligned memory
- bpf, ppc64: fix out of bounds access in tail call
- update to 4.14.25 final

* Thu Mar 08 2018 tmb <tmb> 4.14.24-3.mga7
+ Revision: 1207365
- ASoC: Intel: Skylake: Fix jack name format substitution
- ASoC: Intel: kbl: fix jack name
- update to 4.14.25-rc1

* Wed Mar 07 2018 tmb <tmb> 4.14.24-2.mga7
+ Revision: 1207067
- re-enable 'x86/entry/32: Restore segments before int registers' for now
- ACPI / bus: Parse tables as term_list for Dell XPS 9570 and Precision M5530
- KVM: x86: extend usage of RET_MMIO_PF_* constants
- KVM: x86: fix vcpu initialization with userspace lapic
- add current -stable queue
- update WireGuard to 0.0.20180304
- PTI/x86_32 series: disable 'x86/entry/32: Restore segments before int registers' as noted on LKML
- netfilter: add back stackpointer size checks (CVE-2018-1065)
- tone down warning about running 32bit on 64bit PCID capable hw
- update to PTI for x86_32 v3
- input/goodix: add support for GDIX1002 (mga#22703)

* Sun Mar 04 2018 tmb <tmb> 4.14.24-1.mga7
+ Revision: 1206504
- PCI/ASPM: Deal with missing root ports in link state handling
- update to 4.14.24
- update aufs
- ahci: Add PCI-id for the Highpoint Rocketraid 644L card
- ALSA: hda - Fix a wrong FIXUP for alc289 on Dell machines
- ARM: omap2: hide omap3_save_secure_ram on non-OMAP3 builds
- PCI: Add function 1 DMA alias quirk for Highpoint RocketRAID 644L
- scsi: core: Avoid that ATA error handling can trigger a kernel hang or oops
- scsi: core: return BLK_STS_OK for DID_OK in __scsi_error_from_host_byte()
- scsi: qla2xxx: Fix NULL pointer crash due to active timer for ABTS
- update to 4.14.24-rc1

* Sun Feb 25 2018 tmb <tmb> 4.14.22-1.mga7
+ Revision: 1205095
- update to 4.14.22 final

* Fri Feb 23 2018 tmb <tmb> 4.14.21-1.mga7
+ Revision: 1204413
- update WireGuard to 0.0.20180218
- update to 4.14.22-rc1

* Sun Feb 18 2018 tmb <tmb> 4.14.20-1.mga7
+ Revision: 1202550
- add selected fixes from x86/pti branch
- update to 4.14.20

* Thu Feb 15 2018 tmb <tmb> 4.14.19-2.mga7
+ Revision: 1201563
- update to 4.14.20-rc1

* Tue Feb 13 2018 tmb <tmb> 4.14.19-1.mga7
+ Revision: 1200820
- add current -stable queue
- update to 4.14.19 final
- lock, bfq: put async queues for root bfq groups too
- block, bfq: add requeue-request hook
- add support for Realtek rtl8723de wifi (mga#22559)
- platform/x86: ideapad-laptop: Increase timeout to wait for EC answer
- ACPI / EC: Restore polling during noirq suspend/resume phases
- KVM MMU: check pending exception before injecting APF
- watchdog: gpio_wdt: set WDOG_HW_RUNNING in gpio_wdt_stop
- sched/wait: Fix add_wait_queue() behavioral change

* Fri Feb 09 2018 tmb <tmb> 4.14.18-2.mga7
+ Revision: 1199875
- add PTI (meltdown mitigation) support for 32bit x86
- update to 4.14.19-rc1

* Wed Feb 07 2018 tmb <tmb> 4.14.18-1.mga7
+ Revision: 1199649
- add current -stable queue
- update to 4.14.18 final
- fix rtl8812au Kconfig
- silence 'xt_addrtype: ipv6 does not support BROADCAST matching'
  messages to avoid unnecessary bugreports
- block, bfq: release oom-queue ref to root group on exit
- bfq-iosched: don't call bfqg_and_blkg_put for 1CONFIG_BFQ_GROUP_IOSCHED
- block, bfq: fix occurrences of request finish method's old name
- block, bfq: limit tags for writes and async I/O
- block, bfq: limit sectors served with interactive weight raising
- x86/entry/64: Clear extra registers beyond syscall arguments,
  to reduce speculation attack surface
- x86/entry/64: Clear registers for exceptions/interrupts,
- x86/entry/64/compat: Clear registers for compat syscalls,
- update rtl8812au driver so it actually gets built again (mga#22524)

* Mon Feb 05 2018 tmb <tmb> 4.14.17-2.mga7
+ Revision: 1199121
- enforce retpoline-aware gcc
- update to 4.14.18-rc1

* Sun Feb 04 2018 tmb <tmb> 4.14.17-1.mga7
+ Revision: 1198821
- update to 4.14.17
  * drop merged patches
- update WireGuard to 0.0.20180202

* Wed Jan 31 2018 tmb <tmb> 4.14.16-1.mga7
+ Revision: 1198316
- loop: fix concurrent lo_open/lo_release
- dccp: CVE-2017-8824: use-after-free in DCCP code
- futex: Fix OWNER_DEAD fixup
- KVM: x86: Fix CPUID function for word 6 (80000001_ECX)
- update to 4.14.16 final

* Mon Jan 29 2018 tmb <tmb> 4.14.15-3.mga7
+ Revision: 1198031
- add 4.14.16-rc1

* Wed Jan 24 2018 tmb <tmb> 4.14.15-2.mga7
+ Revision: 1196819
- add current -stable queue

* Tue Jan 23 2018 tmb <tmb> 4.14.15-1.mga7
+ Revision: 1196645
- mm, page_vma_mapped: Introduce pfn_in_hpage()
- net/gso: validate gso_type in GSO handlers
- net: qdisc_pkt_len_init() should be more robust
- net/tls: Correct length of scatterlist in tls_sw_sendpage
- update to 4.14.15 final

* Mon Jan 22 2018 tmb <tmb> 4.14.14-4.mga7
+ Revision: 1196268
- update to 4.14.15-rc1

* Sat Jan 20 2018 tmb <tmb> 4.14.14-3.mga7
+ Revision: 1195066
- add more fixes from -stable queue

* Fri Jan 19 2018 tmb <tmb> 4.14.14-2.mga7
+ Revision: 1194523
- update WireGuard to 0.0.20180118
- add current -stable queue

* Wed Jan 17 2018 tmb <tmb> 4.14.14-1.mga7
+ Revision: 1194015
- fix aufs modular patch to apply cleanly
- update to 4.14.14 final

* Mon Jan 15 2018 tmb <tmb> 4.14.13-2.mga7
+ Revision: 1193548
- x86/kasan: Panic if there is not enough memory to boot
- x86/retpoline: Fill RSB on context switch for affected CPUs
- x86/retpoline: Add LFENCE to the retpoline/RSB filling RSB macros
- drm/i915: Avoid PPS HW/SW state mismatch due to rounding
- add current -stable queue

* Wed Jan 10 2018 tmb <tmb> 4.14.13-1.mga7
+ Revision: 1192079
- platform/x86: wmi: Call acpi_wmi_init() later
- kvm: vmx: Scrub hardware GPRs at VM-exit
  (partial mitigation for CVE 2017-5715 and CVE 2017-5753)
- update to 4.14.13
- update conflict on microcode
- require fixed dracut
- enable CGROUP_BPF for systemd v236

* Sat Jan 06 2018 tmb <tmb> 4.14.12-2.mga7
+ Revision: 1190820
- update conflicts on microcode
- add BFQ performance updates from upstream
- add current -stable queue

* Fri Jan 05 2018 tmb <tmb> 4.14.12-1.mga7
+ Revision: 1190456
- update to 4.14.12 final

* Fri Jan 05 2018 tmb <tmb> 4.14.11-5.mga7
+ Revision: 1190304
- iwlwifi: pcie: fix DMA memory mapping / unmapping
- x86/mm: Set MODULES_END to 0xffffffffff000000
- x86/mm: Map cpu_entry_area at the same place on 4/5 level
- x86/kaslr: Fix the vaddr_end mes
- x86/events/intel/ds: Use the proper cache flush method
  for mapping ds buffers
- x86/tlb: Drop the _GPL from the cpu_tlbstate export
- update to 4.14.12-rc1

* Thu Jan 04 2018 tmb <tmb> 4.14.11-4.mga7
+ Revision: 1190123
- enable PAGE_TABLE_ISOLATION on all x86_64 kernels
 (can be disabled at boot time with pti=off on kernel command line)
- capabilities: fix buffer overread on very short xattr
- exec: Weaken dumpability for secureexec
- x86/process: Define cpu_tss_rw in same section as declaration
- x86/pti: Switch to kernel CR3 at early in entry_SYSCALL_compat()

* Wed Jan 03 2018 tmb <tmb> 4.14.11-3.mga7
+ Revision: 1190002
- x86/dumpstack: Fix partial register dumps
- x86/dumpstack: Print registers for first stack frame
- x86/pti: Make sure the user/kernel PTEs match

* Wed Jan 03 2018 tmb <tmb> 4.14.11-2.mga7
+ Revision: 1189882
- x86/cpu, x86/pti: Do not enable PTI on AMD processors
- enable PAGE_TABLE_ISOLATION on x86_64 server kernels

* Tue Jan 02 2018 tmb <tmb> 4.14.11-1.mga7
+ Revision: 1189829
- update to 4.14.11
  * drop merged patches

* Sat Dec 30 2017 tmb <tmb> 4.14.10-1.mga7
+ Revision: 1187413
- update conflicts on nvidia-current
- cpufreq: schedutil: Use idle_calls counter of the remote CPU
- tracing: Remove extra zeroing out of the ring buffer page
- tracing: Fix possible double free on failure of allocating trace buffer
- tracing: Fix crash when it fails to alloc ring buffer
- update to 4.14.10 final

* Wed Dec 27 2017 tmb <tmb> 4.14.9-2.mga7
+ Revision: 1185986
- fix missing exec permissions on tools/objtool/sync-check.sh
- ALSA: hda - Fix missing COEF init for ALC225/295/299
- add 4.14.10-rc1

* Mon Dec 25 2017 tmb <tmb> 4.14.9-1.mga7
+ Revision: 1184631
- update to 4.14.9 final
- replace e1000e link detection fix patch with final one merged upstream
- KVM: Fix stack-out-of-bounds read in write_mmio (CVE-2017-17741)

* Sat Dec 23 2017 tmb <tmb> 4.14.8-2.mga7
+ Revision: 1184083
- update to 4.14.9-rc3
- disable SPI_INTEL_SPI_PLATFORM as it can corrupt BIOS on atleast many Lenovo laptops

* Fri Dec 22 2017 tmb <tmb> 4.14.8-1.mga7
+ Revision: 1183823
- update to 4.14.9-rc1
- update to 4.14.8 final
- update WireGuard to 0.0.20171221

* Mon Dec 18 2017 tmb <tmb> 4.14.7-2.mga7
+ Revision: 1183220
- update to 4.14.8-rc1

* Sun Dec 17 2017 tmb <tmb> 4.14.7-1.mga7
+ Revision: 1183073
- update WireGuard 0.0.20171211
- update to 4.14.7

* Thu Dec 14 2017 tmb <tmb> 4.14.6-1.mga7
+ Revision: 1182591
- add current -stable queue
- update to 4.14.6
  * drop merged patches

* Sun Dec 10 2017 tmb <tmb> 4.14.5-1.mga7
+ Revision: 1181882
- fix e1000e link detektion regression
- x86/microcode/AMD: Add support for fam17h microcode loading
- update to 4.14.5

* Tue Dec 05 2017 tmb <tmb> 4.14.4-1.mga7
+ Revision: 1181420
- iwlwifi: add new cards for 9260 and 22000 series
- iwlwifi: mvm: flush queue before deleting ROC
- iwlwifi: mvm: enable RX offloading with TKIP and WEP
- iwlwifi: mvm: mark MIC stripped MPDUs
- add current -stable queue
- update to 4.14.4
  * drop merged patches

* Thu Nov 30 2017 tmb <tmb> 4.14.3-1.mga7
+ Revision: 1180402
- disable staging vboxvideo for now
- update wireguard to 0.0.20171127
- autofs: revert 'autofs: take more care to not update last_used on path walk'
- autofs: revert "autofs: fix AT_NO_AUTOMOUNT not being honored"
- exec: avoid RLIMIT_STACK races with prlimit()
- update to 4.14.3
  * drop merged patches
- update aufs to 4.14 final

* Sun Nov 26 2017 tmb <tmb> 4.14.2-1.mga7
+ Revision: 1179676
- update conflicts on btrfs-progs, virtualbox, kernel-firmware-nonfree, radeon-firmware
- ACPI / EC: Fix regression related to triggering source of EC event handling
- ACPI / PM: Fix acpi_pm_notifier_lock vs flush_workqueue() deadlock
- update to 4.14.2 final
- x86_64: kernel-devel: require pkgconfig(libelf) for ORC unwinder

* Wed Nov 22 2017 tmb <tmb> 4.14.1-2.mga7
+ Revision: 1178912
- update WireGuard to 0.0.20171122
- update to 4.14.2-rc1
- reset BR deps for gcc and binutils to mga6 level

* Wed Nov 22 2017 tmb <tmb> 4.14.1-1.mga7
+ Revision: 1178782
- add current -stable queue
- update to 4.14.1 final

* Sun Nov 19 2017 tmb <tmb> 4.14.0-3.mga7
+ Revision: 1177841
- update to 4.14.1-rc1
- x86_64: enable ORC unwinder
- fix dkms build errors on -devel packages

* Thu Nov 16 2017 tmb <tmb> 4.14.0-2.mga7
+ Revision: 1177581
- update conflicts on nvidia and xtables-addons dkms packages
- dmaengine: dmatest: warn user when dma test times out
- edac/sb_edac: Dont create a second memory controller if HA1 is not present
- iwlwifi: fix wrong struct for a000 device
- iwlwifi: add a new a000 device
- iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons
- iwlwifi: add new cards for a000 series
- iwlwifi: add new cards for 8265 series
- iwlwifi: add new cards for 8260 series
- iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command
- iwlwifi: fix PCI IDs and configuration mapping for 9000 series
- iwlwifi: fix firmware names for 9000 and A000 series hw
- update WireGuard to 0.0.20171111

* Mon Nov 13 2017 tmb <tmb> 4.14.0-1.mga7
+ Revision: 1177121
- update filelists
- export vfs_read and vfs_write for aufs
- update defconfigs
- update aufs to 4.14
- drop merged patches
- update to 4.14

* Sat Nov 11 2017 tmb <tmb> 4.13.12-2.mga7
+ Revision: 1176973
- mfd: intel-lpss: Add missing PCI ID for Intel Sunrise Point LPSS devices (mga#21998)
- add current -stable queue

* Wed Nov 08 2017 tmb <tmb> 4.13.12-1.mga7
+ Revision: 1176603
- KEYS: fix NULL pointer dereference during ASN.1 parsing
- workqueue: Fix NULL pointer dereference
- crypto: x86/sha256-mb - fix panic due to unaligned access
- crypto: x86/sha1-mb - fix panic due to unaligned access
- crypto: ccm - preserve the IV buffer
- ACPICA: Dispatch active GPEs at init time
- ACPICA: Make it possible to enable runtime GPEs earlier
- ACPI / scan: Enable GPEs before scanning the namespace
- update to 4.13.12

* Sun Nov 05 2017 tmb <tmb> 4.13.11-2.mga7
+ Revision: 1176065
- x86/cpu/AMD: Fix erratum 1076 (CPB bit)
- add current -stable queue

* Fri Nov 03 2017 tmb <tmb> 4.13.11-1.mga7
+ Revision: 1175711
- fix dangling symlinks (mga#21954)
- re-add WireGuard support
- sched/topology: Introduce NUMA identity node sched domain
- update to 4.13.11
- hwmon/k10temp: refresh Amd Ryzen support patches
- fix devel filelist for arm*

* Fri Oct 27 2017 tmb <tmb> 4.13.10-1.mga7
+ Revision: 1173923
- KVM: SVM: obey guest PAT
- ALSA: hda/realtek - Add support for ALC236/ALC3204
- ALSA: hda - fix headset mic problem for Dell machines with alc236
- update to 4.13.10

* Fri Oct 20 2017 tmb <tmb> 4.13.8-1.mga7
+ Revision: 1172878
- add current -stable queue
- update to 4.13.8

* Sun Oct 15 2017 tmb <tmb> 4.13.7-1.mga7
+ Revision: 1172063
- add 4.13 buildfixes for ndiswrapper and shuttle-wmi
- update dkms conflicts for 4.13
- enable i915 alpha support for preliminary Coffee Lake support
- update defconfigs
- update aufs to 4.13
- drop merged patches
- update to 4.13.7

* Thu Sep 21 2017 tmb <tmb> 4.12.14-1.mga7
+ Revision: 1156789
- update conflicts on nvidia304 and nvidia340 dkms packages
- update to 4.12.14
- ideapad-laptop: add several ideapad laptops to no_hw_rfkill_list
- ideapad-laptop: add ideapad 320-15IKB to no_hw_rfkill_list (mga#21728)

* Sat Sep 16 2017 tmb <tmb> 4.12.13-3.mga7
+ Revision: 1154492
- fix perf build
- enable perf build again
- add current -stable queue

* Thu Sep 14 2017 tmb <tmb> 4.12.13-1.mga7
+ Revision: 1153691
- enable CC_STACKPROTECTOR_STRONG
- enable FANOTIFY_ACCESS_PERMISSIONS (mga#21498)
- update to 4.12.13

* Sun Sep 10 2017 tmb <tmb> 4.12.12-2.mga7
+ Revision: 1152579
- hwmon: (k10temp) Move chip specific code into probe function
- hwmon: (k10temp) Add support for Amd family 17h (Ryzen)
- hwmon: (k10temp) Add support for temperature offsets
- add current -stable queue

* Sun Sep 10 2017 tmb <tmb> 4.12.12-1.mga7
+ Revision: 1152455
- update to 4.12.12

* Sat Sep 02 2017 tmb <tmb> 4.12.10-1.mga7
+ Revision: 1150650
- arm64: mm: abort uaccess retries upon fatal signal
- x86/io: Add "memory" clobber to insb/insw/insl/outsb/outsw/outsl
- update to 4.12.10

* Sat Aug 26 2017 tmb <tmb> 4.12.9-1.mga7
+ Revision: 1148010
- add current -stable queue
- update to 4.12.9

* Thu Aug 17 2017 tmb <tmb> 4.12.8-1.mga7
+ Revision: 1141241
- update to 4.12.8

* Sun Aug 13 2017 tmb <tmb> 4.12.7-1.mga7
+ Revision: 1140056
- update to 4.12.7 final

* Sat Aug 12 2017 tmb <tmb> 4.12.6-1.mga7
+ Revision: 1139925
- add 4.12.7-rc1
- update to 4.12.6

* Wed Aug 09 2017 tmb <tmb> 4.12.5-2.mga7
+ Revision: 1139281
- add current -stable queue

* Sun Aug 06 2017 tmb <tmb> 4.12.5-1.mga7
+ Revision: 1138019
- disable perf again as it's currently broken
- ahci: Add Device ID for ASMedia 1061R and 1062R
- enable perf build
- update to 4.12.5
- aufs: explicitly include linux/vmalloc.h

* Sat Aug 05 2017 tmb <tmb> 4.12.4-1.mga7
+ Revision: 1136286
- temporarliy disable perf build as texlive is not installable
- btrfs: fix early ENOSPC due to delalloc
- add 4.12.5-rc1
- disable generation of /usr/lib/.build-id links as it causes file conflicts on devel packages
- drop more obsolete conflicts
- drop old obsoletes for netbook and xen-ovops packages
- drop ancient obsoletes
- update dkms conflicts for kernel 4.12 support
- disable debug build for now, it will be reworked
- update filelists
- drop adding export of pci_ids.h, needs to be done as part of userspace-headers generation now
- move netfilter IFWLOG and PSD headers to uapi so they get exported
- fix netfilter IFWLOG build with 4.12
- export symbol __sync_filesystem for aufs
- drop rtl8723bs from 3rdparty, it's now merged in staging
- update ndiswrapper to 1.61
- fix ndiswrapper build with 4.10+ series kernels
- rediff mrproper patch
- update defconfigs
- update to aufs 4.12
- drop merged/obsolete patches
- update to 4.12.4

* Fri Jul 28 2017 tmb <tmb> 4.9.40-1.mga7
+ Revision: 1131581
- update to 4.9.40

* Mon Jul 24 2017 tmb <tmb> 4.9.39-1.mga7
+ Revision: 1130005
- drop ThinkPad X1 Carbon fan fix as it causes regressions for other hw
- add current -stable queue
- update to 4.9.39

* Mon Jul 17 2017 tmb <tmb> 4.9.38-1.mga7
+ Revision: 1123896
- update to 4.9.38

* Thu Jul 13 2017 tmb <tmb> 4.9.37-1.mga6
+ Revision: 1109699
- revert 'perf probe: Fix to probe on gcc generated functions in modules'
  introduced in upstream 4.9.36 as it breaks the build
- fix duplicated ALC285 codec references
- force new HT fixed microcode in initrd
- enable support for NFS4_1 and NFS4_2 (mga#21182)
-  Revert 'ACPI / EC: Enable event freeze mode...' to fix a regression
- ALSA: hda/realtek - New codecs support for ALC215/ALC285/ALC289
- ALSA: hda/realtek - New codec device ID for ALC1220
- platform/x86: asus-nb-wmi: Add wapf4 quirk for the X302UA
- update to 4.9.37
  * drop merged patches

* Thu Jun 29 2017 tmb <tmb> 4.9.35-1.mga6
+ Revision: 1108689
- drop WireGuard support (not production ready yet)
- netfilter: xt_TCPMSS: add more sanity tests on tcph->doff
- add current -stable queue
- update to 4.9.35
  * drop merged patches

* Mon Jun 26 2017 tmb <tmb> 4.9.34-4.mga6
+ Revision: 1108512
- add current -stable queue

* Sat Jun 24 2017 tmb <tmb> 4.9.34-3.mga6
+ Revision: 1108295
- drm/amdgpu: add another Polaris12 Device ID
- ALSA: hda - Add Geminilake id to SKL_PLUS
- ALSA: hda - Add Coffelake PCI ID
- ALSA: hda - Apply quirks to Broxton-T, too
- ALSA: hda - Fix applying MSI dual-codec mobo quirk
- update to 4.9.34 final
  * drop merged patches

* Fri Jun 23 2017 tmb <tmb> 4.9.34-2.mga6
+ Revision: 1108231
- mm: Allow stack to grow up to address space limit
- mm: fix new crash in unmapped_area_topdown()
- pinctrl/amd: Use regular interrupt instead of chained
- xhci: Limit USB2 port wake support for AMD Promontory hosts

* Tue Jun 20 2017 tmb <tmb> 4.9.34-1.mga6
+ Revision: 1107918
- dont alter symlinks in boot if initrd creation fails
- xen-blkback: don't leak stack data via response ring (XSA-216)
- update to 4.9.34 (security, bugfixes)

* Wed Jun 14 2017 tmb <tmb> 4.9.32-1.mga6
+ Revision: 1107674
- update to 4.9.32
  * drop merged patches
- revert: 'iwlwifi: fix min API version for 7265D, 3168, 8000 and 8265'
  as older api firmwares are still needed for some hw (mga#21081)

* Wed Jun 07 2017 tmb <tmb> 4.9.31-1.mga6
+ Revision: 1107253
- add support for rtl8812au (mga#21043)
- ahci: Acer SA5-271 SSD Not Detected Fix
- iwlwifi: fix min API version for 7265D, 3168, 8000 and 8265
- Alsa: hda - Apply dual-codec quirk for MSI Z270-Gaming mobo
- update to 4.9.31 final

* Tue Jun 06 2017 tmb <tmb> 4.9.30-4.mga6
+ Revision: 1107065
- revert: 'drm: Add fake controlD* symlinks for backwards compat' as it breaks on atleast i915

* Mon Jun 05 2017 tmb <tmb> 4.9.30-3.mga6
+ Revision: 1107037
- drm/nouveau: Intercept ACPI_VIDEO_NOTIFY_PROBE
- drm: Add fake controlD* symlinks for backwards compat
- update to 4.9.31-rc1

* Sat Jun 03 2017 tmb <tmb> 4.9.30-2.mga6
+ Revision: 1106373
- iommu/amd: flush IOTLB for specific domains only (v3)
- drm/i915/vbt: don't propagate errors from intel_bios_init()
- drm/i915/vbt: split out defaults that are set when there is no VBT
- add current -stable queue

* Thu May 25 2017 tmb <tmb> 4.9.30-1.mga6
+ Revision: 1104567
- release 4.9.30-1.mga6
- update to 4.9.30

* Sat May 20 2017 tmb <tmb> 4.9.29-1.mga6
+ Revision: 1103553
- update to 4.9.29
- enable I2C_DESIGNWARE_PCI on ix86 too
- enable CIFS_SMB2 (mga#20886)

* Sun May 14 2017 tmb <tmb> 4.9.28-1.mga6
+ Revision: 1101114
- update to 4.9.28
  * drop merged patches
- update bfq to v8r11

* Mon May 08 2017 shlomif <shlomif> 4.9.27-1.mga6
+ Revision: 1099670
- New kernel version 4.9.27.

* Wed May 03 2017 tmb <tmb> 4.9.26-1.mga6
+ Revision: 1098864
- alsa: add support for Gigabyte GA-AX370 Gaming 5 with dual Realtek codecs
- update to 4.9.26
  * drop merged patches

* Fri Apr 28 2017 tmb <tmb> 4.9.25-1.mga6
+ Revision: 1097938
- macsec: fix heap-based overflow (CVE-2017-7477)
- ping: implement proper locking (CVE-2017-2671)
- Revert 'mmc: sdhci-msm: Enable few quirks'
- jbd2: Fix dbench4 performance regression for 'nobarrier' mounts
- update to 4.9.25 final

* Wed Apr 26 2017 tmb <tmb> 4.9.24-2.mga6
+ Revision: 1097656
- fix local dos in af_packet (CVE-2017-7308)
- update BFQ to v8r10
- add 4.9.25-rc1
- update to 4.9.24

* Thu Apr 20 2017 shlomif <shlomif> 4.9.23-1.mga6
+ Revision: 1096900
- New version 4.9.23.
- New version 4.9.21.
+ tmb <tmb>
- add current -stable queue

* Fri Mar 31 2017 tmb <tmb> 4.9.20-1.mga6
+ Revision: 1095529
- libceph: force GFP_NOIO for socket allocations
- iwlwifi: fix MODULE_FIRMWARE for 6030
- amdgpu: add another polaris12 pci id
- update to 4.9.20 final

* Thu Mar 30 2017 tmb <tmb> 4.9.19-2.mga6
+ Revision: 1095373
- do trigger dkms build on dkms package update (now where is that brown paper bag...)
- update to 4.9.20-rc1

* Thu Mar 30 2017 tmb <tmb> 4.9.19-1.mga6
+ Revision: 1095295
- add current -stable queue
- update to 4.9.19 final
- dont trigger dkms build during classical install
- enable CONFIG_EFI_MIXED

* Tue Mar 28 2017 tmb <tmb> 4.9.18-2.mga6
+ Revision: 1095085
- PCI: Blacklist AMD Stoney GPU devices for ATS
- add 4.9.19-rc1

* Tue Mar 28 2017 tmb <tmb> 4.9.18-1.mga6
+ Revision: 1095017
- add current -stable queue
- add net -stable queue
- update to 4.9.18 final

* Fri Mar 24 2017 tmb <tmb> 4.9.17-1.mga6
+ Revision: 1094726
- add 4.9.18-rc1
- update to 4.9.17 final

* Mon Mar 20 2017 tmb <tmb> 4.9.16-2.mga6
+ Revision: 1093819
- ACPICA: Events: Fix acpi_ev_initialize_region() return value
- update to 4.9.17-rc1

* Sat Mar 18 2017 tmb <tmb> 4.9.16-1.mga6
+ Revision: 1093443
- update rtl8xxxu from upsteam 4.11-rc2 (mga#20508)
- update to 4.9.16
  * drop merged patches

* Wed Mar 15 2017 tmb <tmb> 4.9.15-1.mga6
+ Revision: 1092802
- add current -stable queue
- update to 4.9.15 final

* Mon Mar 13 2017 tmb <tmb> 4.9.14-1.mga6
+ Revision: 1092315
- update to 4.9.15-rc1
- update to 4.9.14 final

* Fri Mar 10 2017 tmb <tmb> 4.9.13-3.mga6
+ Revision: 1091548
- update to 4.9.14-rc1

* Sun Mar 05 2017 tmb <tmb> 4.9.13-2.mga6
+ Revision: 1088820
- update wireguard code
- mac80211: flush delayed work when entering suspend
- mac80211: don't reorder frames with SN smaller than SSN
- mac80211: don't handle filtered frames within a BA session
- mac80211: use driver-indicated transmitter STA only for data frames
- drm/amdgpu/pm: check for headless before calling compute_clocks
- dm raid: fix data corruption on reshape request
- ALSA: ctxfi: Fallback DMA mask to 32bit
- add Amd Polaris12 support

* Mon Feb 27 2017 tmb <tmb> 4.9.13-1.mga6
+ Revision: 1088095
- nvme: detect NVMe controller in recent MacBooks
- update to 4.9.13 final

* Fri Feb 24 2017 tmb <tmb> 4.9.12-2.mga6
+ Revision: 1087590
- alsa/hda: add support for Realtek ALC299 and ALC1220 codecs
- update to 4.9.13-rc1

* Thu Feb 23 2017 tmb <tmb> 4.9.12-1.mga6
+ Revision: 1087539
- add current -stable queue fixes
- dccp: fix freeing skb too early for IPV6_RECVPKTINFO (CVE-2017-6074)
- update to 4.9.12 final
- stop exposing mtrr_add/del as nVidia drivers now have been fixed to handle it properly
+ shlomif <shlomif>
- Updating the URLs (MGA#20334).
- ftp.kernel.org is going away.

* Tue Feb 21 2017 tmb <tmb> 4.9.11-2.mga6
+ Revision: 1087252
- update to 4.9.12-rc1

* Sat Feb 18 2017 tmb <tmb> 4.9.11-1.mga6
+ Revision: 1086695
- update to 4.9.11
  * drop merged patches

* Wed Feb 15 2017 tmb <tmb> 4.9.10-1.mga6
+ Revision: 1086342
- add current -stable queue
- update to 4.9.10
  * drop merged patches

* Sat Feb 11 2017 tmb <tmb> 4.9.9-2.mga6
+ Revision: 1085728
- ALSA: hda - adding a new NV HDMI/DP codec ID in the driver
- ALSA: seq: Don't handle loop timeout at snd_seq_pool_done()
- ALSA: seq: Fix race at creating a queue
- Revert "ALSA: line6: Only determine control port properties if needed"
- drm/i915: don't warn about Skylake CPU - KabyPoint PCH combo
- IB/rxe: Fix mem_check_range integer overflow (CVE-2016-8636)
- lwtunnel: valid encap attr check should return 0 when lwtunnel is disabled
- ping: fix a null pointer dereference
- arm: fix missing WIREGUARD_PARALLEL config for v6v7
- add current -stable queue

* Fri Feb 10 2017 tmb <tmb> 4.9.9-1.mga6
+ Revision: 1085647
- add WireGuard VPN support
- add current -stable queue
- update to 4.9.9 final

* Tue Feb 07 2017 tmb <tmb> 4.9.8-2.mga6
+ Revision: 1085085
- cpufreq: intel_pstate: Disable energy efficiency optimization for KBL
- update to 4.9.9-rc1

* Sat Feb 04 2017 tmb <tmb> 4.9.8-1.mga6
+ Revision: 1084751
- add current -stable queue
- update to 4.9.8 final

* Fri Feb 03 2017 tmb <tmb> 4.9.7-2.mga6
+ Revision: 1084661
- x86/efi: Always map the first physical page into the EFI pagetables
- update to 4.9.8-rc1

* Thu Feb 02 2017 tmb <tmb> 4.9.7-1.mga6
+ Revision: 1084537
- rtlwifi: rtl8192ce: Fix loading of incorrect firmware
- add current -stable queue
- update to 4.9.7
  * drop merged patches

* Thu Jan 26 2017 tmb <tmb> 4.9.6-1.mga6
+ Revision: 1083482
- drm: Fix broken VT switch with video=1366x768 option
- drm/i915: Ignore bogus plane coordinates on SKL when the
  plane is not visible
- drm: Schedule the output_poll_work with 1s delay if we have
  delayed event
- fbdev: color map copying bounds checking (CVE-2016-8405)
- tile/ptrace: Preserve previous registers for short regset write
- update to 4.9.6
- Input: ALPS - fix TrackStick support for SS5 hardware

* Fri Jan 20 2017 tmb <tmb> 4.9.5-1.mga6
+ Revision: 1082545
- tpm/tpm_crb: implement tpm crb idle state
- tpm/tpm_crb: fix Intel PTT hw bug during idle state
- tpm/tpm_crb: open code the crb_init into acpi_add
- tpm/tpm_crb: implement runtime pm for tpm_crb
- brcmfmac: fix incorrect channed deduction causing performance issues
- x86/ioapic: Restore IO-APIC irq_chip retrigger callback
- ACPI: do not warn if _BQC does not exist
- update rtl8723bs wireless driver
- netfilter/psd: make defines psd specific to avoid redefines
- add current -stable queue
- update to 4.9.5 final

* Wed Jan 18 2017 tmb <tmb> 4.9.4-2.mga6
+ Revision: 1082260
- update to 4.9.5-rc1
  * drop merged patches

* Sun Jan 15 2017 tmb <tmb> 4.9.4-1.mga6
+ Revision: 1081785
- update to 4.9.4
  * drop merged patches

* Thu Jan 12 2017 tmb <tmb> 4.9.3-1.mga6
+ Revision: 1081221
- rcu: Narrow early boot window of illegal synchronous grace periods
- mm/slab.c: fix SLAB freelist randomization duplicate entries
- drm: Clean up planes in atomic commit helper failure path
- net/mlx5: Only cancel recovery work when cleaning up device
- add current stable queue
- drm/i915/skl: drop workarounds for A0 and B0 revisions
- drm/i915/skl: drop workarounds for D0 revision
- drm/i915/skl: drop workarounds for E0 revision
- drm/i915: Remove WaDisableLSQCROPERFforOCL KBL workaround
- rtlwifi: Fix enter/exit power_save
- update to 4.9.3 final

* Tue Jan 10 2017 tmb <tmb> 4.9.2-1.mga6
+ Revision: 1080850
- add 4.9.3-rc1
- update to 4.9.2 final

* Fri Jan 06 2017 tmb <tmb> 4.9.1-1.mga6
+ Revision: 1080366
- seq_file: reset iterator to first record for zero offset
- add current stable queue
- update to 4.9.1 final
- virtio_blk: avoid DMA to stack for the sense buffer

* Wed Jan 04 2017 tmb <tmb> 4.9.0-4.mga6
+ Revision: 1080125
- update conflicts on btrfs-progs
- update to 4.9.1-rc1
- disable MODVERSIONS, its broken
- update conflicts on firmware packages
- update conflicts on nvidia3xx dkms packages

* Sun Jan 01 2017 tmb <tmb> 4.9.0-3.mga6
+ Revision: 1078979
- ath10k: fix soft lockup during firmware crash/hw-restart
- dm raid: fix discard support regression
- drm/i915: Fix cdclk vs. dev_cdclk mess when not recomputing things
- drm/i915: Initialize dev_priv->atomic_cdclk_freq at init time

* Sun Jan 01 2017 tmb <tmb> 4.9.0-2.mga6
+ Revision: 1078943
- drm/i915/gen9: Fix PCODE polling during CDCLK change notification
- drm/i915/gen9: Fix PCODE polling during SAGV disabling
- revert: 'drm/i915: Suppress underruns during DP link retraining'
- drm/i915: Fix setting of boost freq tunable
- tools build: Make fixdep parsing wait for last target
- perf tools: Force fixdep compilation at the start of the build
- perf tools: Move perf build related variables under non fixdep leg
- mm, memcg: fix the active list aging for lowmem requests when memcg is enabled
- drm/i915: Suppress underruns during DP link retraining
- vfs,mm: fix return value of read() at s_maxbytes
- rtlwifi: Fix enter/exit power_save
- rtlwifi: rtl_usb: Fix missing entry in USB drivers private data
- rtlwifi: Use dev_kfree_skb_irq instead of kfree_skb
- rtlwifi: Fix kernel oops introduced with commit e49656147359
- sg_write()/bsg_write() is not fit to be called under KERNEL_DS (CVE-2016-10088)

* Sat Dec 31 2016 tmb <tmb> 4.9.0-1.mga6
+ Revision: 1078793
- update BFQ to v8r6
- update dkms conflicts
- update filelists
- add missing d_exchange export for aufs
- update defconfigs
- rediff 3rdparty-merge, mach64, mrproper, powerpc tools patches
- update aufs to 4.9
- drop merged patches
- update to 4.9

* Wed Dec 21 2016 tmb <tmb> 4.8.15-1.mga6
+ Revision: 1076252
- drm/i915: disable PSR by default on HSW/BDW
- sched/fair: Fix fixed point arithmetic width for shares and effective load
- driver core: fix race between creating/querying glue dir and its cleanup
- arm64: mark reserved memblock regions explicitly in iomem
- Revert "netfilter: nat: convert nat bysrc hash to rhashtable"
- Revert "netfilter: move nat hlist_head to nf_conn"
- Btrfs: fix memory leak in reading btree blocks
- Btrfs: bail out if block group has different mixed flag
- Btrfs: return gracefully from balance if fs tree is
- Btrfs: don't leak reloc root nodes on error
- btrfs: clean the old superblocks before freeing the
- Btrfs: fix memory leak in do_walk_down
- btrfs: fix a possible umount deadlock
- Btrfs: don't BUG() during drop snapshot
- Btrfs: fix incremental send failure caused by balance
- btrfs: make file clone aware of fatal signals
- update to 4.8.15 final
- enable AXP288_FUEL_GAUGE as module (requested by Joseph Wang)

* Wed Dec 14 2016 tmb <tmb> 4.8.14-2.mga6
+ Revision: 1075221
- drm/i915: skip the first 4k of stolen memory on everything >= gen8
- netfilter: fix performance slowdown in binary arp/ip/ip6tables
- add 4.8.15-rc1

* Sat Dec 10 2016 tmb <tmb> 4.8.14-1.mga6
+ Revision: 1074153
- update to 4.8.14
  * drop merged patches
- update conflicts on dkms-broadcom-wl

* Thu Dec 08 2016 tmb <tmb> 4.8.12-3.mga6
+ Revision: 1073390
- net: handle no dst on skb in icmp6_send (CVE-2016-9919)
- add current stable net queue

* Tue Dec 06 2016 tmb <tmb> 4.8.12-2.mga6
+ Revision: 1072863
- packet: fix race condition in packet_set_ring (CVE-2016-8655)
- netfilter: ipv6: nf_defrag: drop mangled skb on ream error (CVE-2016-9755)
- net: avoid signed overflows for SO_{SND|RCV}BUFFORCE (CVE-2016-9793)
- add current stable queue

* Sat Dec 03 2016 tmb <tmb> 4.8.12-1.mga6
+ Revision: 1071858
- cxgb4: Add PCI device ID for new adapter
- mm: workingset: fix NULL ptr in count_shadow_nodes
- add current stable queue
- update to 4.8.12
  * drop merged patches

* Thu Dec 01 2016 tmb <tmb> 4.8.11-3.mga6
+ Revision: 1071528
- drop amdgpu/radeon poverstate patches causing regression
- add mpt3sas: unblock device after controller reset

* Tue Nov 29 2016 tmb <tmb> 4.8.11-2.mga6
+ Revision: 1071016
- pull in current stable queue
- fix for HID gamepad DragonRise (mga#19853)
- enable Intel SOC audio support
- enable KEYBOARD_GPIO
- enable GPIO for rtl8723bs

* Sat Nov 26 2016 tmb <tmb> 4.8.11-1.mga6
+ Revision: 1070257
- update to 4.8.11
  * drop merged patches

* Wed Nov 23 2016 tmb <tmb> 4.8.10-3.mga6
+ Revision: 1068865
- gpio: pca953x: Fix corruption of other gpios in set_multiple
- gpio: pca953x: Move memcpy into mutex lock for set multiple
- scsi: mpt3sas: Fix secure erase premature termination
- thermal/powerclamp: add back module device table
- x86/fpu: Fix invalid FPU ptrace state after execve()
- x86/traps: Ignore high word of regs->cs in early_fixup_exception()
- flow_dissect: call init_default_flow_dissectors() earlier

* Tue Nov 22 2016 tmb <tmb> 4.8.10-2.mga6
+ Revision: 1068656
- add current -stable queue

* Mon Nov 21 2016 tmb <tmb> 4.8.10-1.mga6
+ Revision: 1068531
- add current -stable queue
- update to 4.8.10 final

* Sat Nov 19 2016 tmb <tmb> 4.8.9-1.mga6
+ Revision: 1068317
- add 4.8.10-rc1 patch
- update to 4.8.9
  * drop merged patches

* Tue Nov 15 2016 tmb <tmb> 4.8.8-1.mga6
+ Revision: 1067199
- update to 4.8.8
  * drop merged patches

* Sat Nov 12 2016 tmb <tmb> 4.8.7-1.mga6
+ Revision: 1066719
- drm/amdgpu: fix crash in acp_hw_fini
- drm/i915/dp: BDW cdclk fix for DP audio
- drm/i915/dp: Extend BDW DP audio workaround to GEN9 platforms
- PCI: Don't attempt to claim shadow copies of ROM
- really add stable queue patches
- drop merged/obsolete patches
+ ghibo <ghibo>
- Update to release 4.8.7.
- Added current -stable queue patchset.
- removed x86-smpboot-Init-apic-mapping-before-usage.patch (merged upstream)
- removed dm-raid-fix-compat_features-validation.patch (merged upstream)
- removed gpu-drm-i915-gen9-fix-DDB-partitioning-for-multi-screen-cases.patch (merged upstream)
- removed moved net-add-recursion-limit-to-GRO.patch (because is already in the stable queue patchset with name net-add-recursion-limit-to-gro.patch)

* Mon Oct 31 2016 tmb <tmb> 4.8.6-1.mga6
+ Revision: 1064296
- update to 4.8.6
  * drop merged patches
- dm raid: fix compat_features validation
- add missing info for 'drm/i915/gen9: fix DDB partitioning for multi-screen cases'
- x86/smpboot: Init apic mapping before usage
- update CVE-2016-7039 fix with last revision merged upstream
- update rtlwifi regression fix to upstream merged one
- update aufs to v4.8

* Sat Oct 29 2016 tmb <tmb> 4.8.5-2.mga6
+ Revision: 1063899
- add current -stable queue
+ ghibo <ghibo>
- Enabled CONFIG_VFIO_PCI_VGA for KVM GPU Passtrough
- Version 4.8.5.
- Enable CONFIG_IO_STRICT_DEVMEM for x86_64 and arm (suggested by Thierry Vignaud)
- Increase CONFIG_DEFAULT_MMAP_MIN_ADDR for x86_64 and arm (suggested by Thierry Vignaud)
- Added final Patchset for i915 watermark bug (https://bugs.freedesktop.org/show_bug.cgi?id=97450)
- Added patch for allowing governor settings from cpupower (https://bugzilla.kernel.org/show_bug.cgi?id=135391) (suggested by Zézinho).
- Removed kernel-sched-fair-Fix-incorrect-task-group-load_avg patch (merged upstream).

* Mon Oct 24 2016 ghibo <ghibo> 4.8.4-1.mga6
+ Revision: 1063428
- Update to release 4.8.4.
- Attempt to fix FIFO underrun problems for skylake (patches from https://bugs.freedesktop.org/show_bug.cgi?id=97450)
- Add patch to let NVMe drives enter in power state (from https://github.com/damige/linux-nvme, already used by Arch)

* Thu Oct 20 2016 tmb <tmb> 4.8.3-1.mga6
+ Revision: 1062683
- net: add recursion limit to GRO (CVE-2016-7039)
- rtlwifi: fix regression caused by 'rtlwifi: rtl818x: constify local structures'
- sched/fair: Fix incorrect task group ->load_avg
- update to 4.8.3

* Tue Oct 18 2016 ghibo <ghibo> 4.8.2-2.mga6
+ Revision: 1062100
- Added and enabled BFQ scheduler v8r4 for 4.8 series

* Sun Oct 16 2016 tmb <tmb> 4.8.2-1.mga6
+ Revision: 1061122
- Revert "include/uapi/linux/atm_zatm.h: include linux/time.h" as it breaks
  linux-atm build because of glibc vs kernel uapi mismatch
  (reported by pterjan)
- update to 4.8.2
- update conflicts on dkms-nvidia-current
- dont ship .gitignore files in kernel source
- dont ship tools source for arches we dont support
  (fixes dangling powerpc symlinks, mga#17676)
- update conflicts on dkms packaged drivers

* Fri Oct 07 2016 tmb <tmb> 4.8.1-1.mga6
+ Revision: 1059341
- update conflicts on dkms-nvidia-current
- update filelists
- update defconfigs
- rebase dm-raid-aliases and mrproper patches
- rtl8723bs: kernel 4.8 buildfix
- temporarily disable BFQ patches (no kernel 4.8 support yet)
- drop merged patches
- update to 4.8.1

* Tue Oct 04 2016 shlomif <shlomif> 4.7.6-1.mga6
+ Revision: 1058400
- New version 4.7.6.

* Mon Sep 26 2016 ghibo <ghibo> 4.7.5-1.mga6
+ Revision: 1057034
- Fix typo in SPEC file comments
+ shlomif <shlomif>
- New version 4.7.5.
+ tmb <tmb>
- drop duplicated Intel ahci ids (merged in 4.4-rc1+)
- disable FW_LOADER_USER_HELPER_FALLBACK (mga#19390)

* Sun Sep 18 2016 shlomif <shlomif> 4.7.4-2.mga6
+ Revision: 1053947
- Add the BFQ patches - thanks to joeghi .
- New version 4.7.4
+ tmb <tmb>
- enable STRICT_DEVMEM
- disable Goldfish platform support (mga#18814)

* Wed Sep 07 2016 shlomif <shlomif> 4.7.3-1.mga6
+ Revision: 1050358
- New version 4.7.3.

* Sun Aug 21 2016 shlomif <shlomif> 4.7.2-1.mga6
+ Revision: 1047629
- New ver 4.7.2 - remove some already applied patches.
- Update to kernel 4.7.1 (from 4.7.0).
- Remove some patches that were already applied in the mainline and reported
  as such. DO NOT SUBMIT until all the module kernels that have to be rebuilt are
  ready.
- kernel tested fine locally here (x86-64 / Core i3 machine).

* Sat Jul 30 2016 tmb <tmb> 4.7.0-2.mga6
+ Revision: 1044078
- bcma: add PCI ID for Foxconn's BCM43142 device
- Bluetooth: Add support of 13d3:3490 AR3012 device
- brcmfmac: restore stopping netdev queue when bus clogs up
- ext4: don't call ext4_should_journal_data() on the journal inode
- ext4: fix deadlock during page writeback
- HID: uhid: fix timeout when probe races with IO
- hp-wmi: Fix wifi cannot be hard-unblocked
- intel_th: Fix a deadlock in modprobing
- intel_th: pci: Add Kaby Lake PCH-H support
- media: usbtv: prevent access to free'd resources
- media: vb2: core: Skip planes array verification if pb is NULL
- videobuf2-v4l2: Verify planes array in buffer dequeueing
- egaraid_sas: Do not fire MR_DCMD_PD_LIST_QUERY to controllers
  which do not support it
- pinctrl: cherryview: prevent concurrent access to GPIO controllers
- Revert "cpufreq: pcc-cpufreq: update default value of
  cpuinfo_transition_latency"
- usb: dwc3: fix for the isoc transfer EP_BUSY flag
- usb: renesas_usbhs: fix NULL pointer dereference in xfer_work()
- x86/power/64: Fix hibernation return address corruption
- amdgpu: enable experimental Sea Islands: Kaveri, Bonaire, Hawaii,
  Kabini, Mullins support (mga#19037, mga#19043)

* Sun Jul 24 2016 tmb <tmb> 4.7.0-1.mga6
+ Revision: 1043532
- update to 4.7 final
  * drop merged patches

* Wed Jul 20 2016 tmb <tmb> 4.7.0-0.rc7.6.mga6
+ Revision: 1042808
- crypto: qat - make qat_asym_algs.o depend on asn1 headers
- drm/i915: Treat eDP as always connected, again
- drm/i915: add missing condition for committing planes on crtc
- drm/i915: enable / fixup KabyLake support

* Mon Jul 18 2016 tmb <tmb> 4.7.0-0.rc7.5.mga6
+ Revision: 1042473
- tcp: make challenge acks less predictable (CVE-2016-5389, CVE-2016-5969)
- default to ondemand cpufreq governor
- x86/x86_64: disable unneeded DEVFREQ
- make all cpufreq governors builtin for easy mode switching
- add more post -rc7 fixes

* Fri Jul 15 2016 tmb <tmb> 4.7.0-0.rc7.4.mga6
+ Revision: 1042152
- pull in latest post -rc7 fixes from git

* Wed Jul 13 2016 tmb <tmb> 4.7.0-0.rc7.3.mga6
+ Revision: 1041910
- more upstream fixes for core, timer, x86

* Wed Jul 13 2016 tmb <tmb> 4.7.0-0.rc7.2.mga6
+ Revision: 1041889
- add post -rc7 fixes from git

* Mon Jul 11 2016 tmb <tmb> 4.7.0-0.rc7.1.mga6
+ Revision: 1041083
- Revert "ACPICA: Namespace: Fix namespace/interpreter lock ordering"
  as it breaks boot on some systems
- update to 4.7-rc7

* Fri Jul 08 2016 tmb <tmb> 4.7.0-0.rc6.3.mga6
+ Revision: 1039881
- sync in more fixes from upstream git

* Thu Jul 07 2016 tmb <tmb> 4.7.0-0.rc6.2.mga6
+ Revision: 1039418
- iwlwifi: add new 8260 pci ids
- iwlwifi: add new 8265 pci ids
- iwlwifi: pcie: enable interrupts before releasing the NICs CPU
- iwlwifi: pcie: fix a race in firmware loading flow
- add post rc6 drm fixes from upstream
- add post rc6 fixes from upstream git

* Tue Jul 05 2016 tmb <tmb> 4.7.0-0.rc6.1.mga6
+ Revision: 1038870
- update dkms conflicts
- update firmware conflicts to get new firmware in initrd
- add ndiswrapper 4.7 buildfix
- add rtl8723bs 4.7 buildfix
- add missing export for aufs
- update filelists
- update defconfigs
- update aufs for kernel 4.7 support
- rebase Rpi2 ethernet DT patch
- drop merged patches
- update to 4.7-rc6

* Sat Jun 25 2016 tmb <tmb> 4.6.3-1.mga6
+ Revision: 1037593
- ACPICA: Namespace: Fix deadlock triggered by MLC support in dynamic
  table loading
- sd: Fix rw_max for devices that report an optimal xfer size
- drm/i915/fbc: Disable on HSW by default for now
- mm, sl[au]b: add __GFP_ATOMIC to the GFP reclaim mask
- tmpfs: don't undo fallocate past its last page
- update to 4.6.3 final

* Thu Jun 23 2016 tmb <tmb> 4.6.2-3.mga6
+ Revision: 1037239
- update to 4.6.3-rc1

* Sun Jun 19 2016 tmb <tmb> 4.6.2-2.mga6
+ Revision: 1036781
- add current -stable queue fixes

* Fri Jun 10 2016 tmb <tmb> 4.6.2-1.mga6
+ Revision: 1020978
- use SLUB allocator on server kernels too
- update to 4.6.2 final

* Tue Jun 07 2016 tmb <tmb> 4.6.1-2.mga6
+ Revision: 1020613
- update to 4.6.2-rc1

* Thu Jun 02 2016 tmb <tmb> 4.6.1-1.mga6
+ Revision: 1019789
- add missing fs/aufs/magic.mk to -devel packages
- conflict too old dkms packages that dont support kernel 4.6
- update to 4.6.1
- update and re-enable aufs support

* Mon May 30 2016 tmb <tmb> 4.6.0-2.mga6
+ Revision: 1019431
- add current -stable queue fixes

* Mon May 16 2016 tmb <tmb> 4.6.0-1.mga6
+ Revision: 1016013
- update to 4.6.0 final

* Fri May 13 2016 tmb <tmb> 4.6.0-0.rc7.4.mga6
+ Revision: 1015047
- update post -rc7 fixes from git

* Wed May 11 2016 tmb <tmb> 4.6.0-0.rc7.3.mga6
+ Revision: 1013613
- sync post rc7 fixes from git

* Tue May 10 2016 tmb <tmb> 4.6.0-0.rc7.2.mga6
+ Revision: 1012168
- add post rc7 fixes from git

* Mon May 09 2016 tmb <tmb> 4.6.0-0.rc7.1.mga6
+ Revision: 1011195
- add net fixes from DaveM
- update to 4.6-rc7

* Sat May 07 2016 tmb <tmb> 4.6.0-0.rc6.2.mga6
+ Revision: 1010184
- add post -rc6 fixes from git
+ blino <blino>
- RPi 2 support: backport patches to read MAC address from Device Tree (instead of random one)
- desktop-armv6v7: enable back FB_SIMPLE (works fine on RPi2 after u-boot commit 1382648b6bef3921086abeadadbd9fbc54619ab1)

* Tue May 03 2016 tmb <tmb> 4.6.0-0.rc6.1.mga6
+ Revision: 1009055
- update ndiswrapper to 1.60
- update to 4.6-rc6-git

* Sat Apr 30 2016 tmb <tmb> 4.6.0-0.rc5.2.mga6
+ Revision: 1008059
- add post -rc5 fixes from git
+ blino <blino>
- desktop-armv6v7: enable Broadcom 2835/2836 support (Raspberry Pi)
- desktop-armv6v7: disable FB_SIMPLE to avoid taking over serial console
- desktop-armv6v7: enable dwc2 USB host driver (for Raspberry Pi) as builtin (early rootfs mount)

* Mon Apr 25 2016 tmb <tmb> 4.6.0-0.rc5.1.mga6
+ Revision: 1006085
- rediff mrproper patch
- update to 4.6-rc5
+ blino <blino>
- desktop-armv6v7: enable mailbox driver (to be used for RPi support)
- desktop-armv6v7: make SD support builtin for early rootfs mount, to avoid initrd

* Thu Apr 21 2016 tmb <tmb> 4.6.0-0.rc4.1.mga6
+ Revision: 1003957
- update perf filelist
- add post -rc4 fixes from git
- clean up arm defconfig creation
- arm: CGROUPS is needed for all systems using systemd
- arm: make desktop config the default one
- update defconfigs
- drop merged patches
- rebase 3rdparty and shuttle-wmi driver patches
- disable aufs for now (no 4.6 support yet)
- update to 4.6-rc4
- update conflicts and requires on firmware and microcode

* Thu Mar 17 2016 tmb <tmb> 4.4.6-1.mga6
+ Revision: 992328
- disable perf silent install during build
- update to 4.4.6
  * drop merged patches
- re-enable perf build
- netfilter: x_tables: check for size overflow (CVE pending)
- netfilter: x_tables: deal with bogus nextoffset values (CVE pending)
- pipe: limit the per-user amount of pages allocated in pipes (CVE-2016-2847)

* Thu Mar 10 2016 tmb <tmb> 4.4.5-1.mga6
+ Revision: 988788
- Revert "ipmi: Start the timer and thread on internal msgs"
  (fixes hard lock on Dell R720xd)
- update to 4.4.5 final

* Wed Mar 09 2016 tmb <tmb> 4.4.4-2.mga6
+ Revision: 988501
- Revert "drm/radeon: call hpd_irq_event on resume"
  Revert "drm/radeon/pm: adjust display configuration after powerstate"
- x86/mm: Fix slow_virt_to_phys() for X86_PAE again
- update to 4.4.5-rc1

* Sat Mar 05 2016 tmb <tmb> 4.4.4-1.mga6
+ Revision: 986037
- ata: add Intel Lewisburg device IDs for SATA
- ata: ahci: don't mark HotPlugCapable Ports as external/removable
- libata: align ata_device's id on a cacheline
- libata: fix HDIO_GET_32BIT ioctl
- arm/arm64: KVM: Fix ioctl error handling
- block: Initialize max_dev_sectors to 0
- btrfs: async-thread: Fix a use-after-free error for trace
- btrfs: fix deadlock running delayed iputs at transaction commit time
- btrfs: Fix no_space in write and rm loop
- cifs: fix out-of-bounds access in lease parsing
- cifs: Fix SMB2+ interim response processing for read requests
- drivers: sh: Restore legacy clock domain on SuperH platforms
- drm/amdgpu: mask out WC from BO on unsupported arches
- fbcon: set a default value to blink interval
- Fix cifs_uniqueid_to_ino_t() function for s390
- iommu/amd: Apply workaround for ATS write permission check
- iommu/amd: Fix boot warning when device 00:00.0 is not iommu covered
- iommu/vt-d: Use BUS_NOTIFY_REMOVED_DEVICE in hotplug path
- kvm: x86: fix root cause for missed hardware breakpoints
- kvm: x86: Update tsc multiplier on change
- mips/kvm: fix ioctl error handling
- parisc: Fix ptrace syscall number and return value modification
- pci: keystone: Fix MSI code that retrieves struct pcie_port pointer
- fs/dcache: use ->d_seq to get coherency between ->d_inode and ->d_flags
- vfio: fix ioctl error handling
- update to 4.4.4 final
- update conflicts on utils, drivers, microcode and firmware for kernel 4.4 series

* Thu Mar 03 2016 tmb <tmb> 4.4.3-1.mga6
+ Revision: 984458
- update exports for aufs modular support
- update aufs4.4 and re-enable it
- update to 4.4.4-rc1
+ blino <blino>
- desktop-armv6v7: enable VFP (and thus VPFv3) and NEON
- create_configs: fix bug that rewrote previous config option instead of comments or empty lines
- desktop-armv6v7: make sure big endian is disabled
- arm: do not attempt to set CPU_V* configs that are non-visible
- desktop-armv6v7: enable SMSC network drivers (smsc911x is used by Versatile Express)
- desktop-armv6v7: enable namespaces
- desktop-armv6v7: enable Versatile Express board (for qemu): serial console, SD/MMC controller, framebuffer, keyboard are working
- desktop-armv6v7: enable SCHED_AUTOGROUP
- desktop-armv6v7: enable cgroups
- desktop-armv6v7: enable DEVTMPFS and DEVTMPFS_MOUNT for early rootfs mount, to avoid initrd

* Thu Feb 25 2016 tmb <tmb> 4.4.2-2.mga6
+ Revision: 979109
- Revert 'workqueue: make sure delayed work run in local cpu'
- update to 4.4.3-rc1
  * drop merged patches
  * temporarily disable aufs because of mm/vma changes
- uapi: update install list after nvme.h rename (reported by tv)

* Wed Feb 17 2016 tmb <tmb> 4.4.2-1.mga6
+ Revision: 964454
- update to 4.4.2
  * drop merged patches

* Sat Feb 13 2016 tmb <tmb> 4.4.1-2.mga6
+ Revision: 959766
- ALSA: hda - Implement loopback control switch for Realtek and other codecs
- base/platform: Fix platform drivers with no probe callback
- block: fix bio splitting on max sectors
- block: split bios to max possible length
- crypto: sun4i-ss - add missing statesize
- HID: usbhid: fix recursive deadlock
- NFSv4.1/pnfs: Fixup an lo->plh_block_lgets imbalance in layoutreturn
- ocfs2/dlm: clear refmap bit of recovery lock while doing local recovery cleanup
- ocfs2/dlm: ignore cleaning the migration mle that is inuse
- ocfs2: NFS hangs in __ocfs2_cluster_lock due to race with ocfs2_unblock_lock
- Revert 'xfs: clear PF_NOFREEZE for xfsaild kthread' (mga#17489)
- ahci: Intel DNV device IDs SATA
- drm: No-Op redundant calls to drm_vblank_off() (v2)
- drm: Prevent vblank counter bumps > 1 with active vblank clients. (v2)
- drm: Fix drm_vblank_pre/post_modeset regression from Linux 4.4
- drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2)
- drm/nouveau/display: Enable vblank irqs after display engine is on again.
+ blino <blino>
- build multi-platform ARMv6 + ARMv7 desktop kernel on armv5tl
- IFWLOG: remove unused label
- arm: do not build dtbs explicitely, this is done by default since 3.7

* Mon Feb 01 2016 tmb <tmb> 4.4.1-1.mga6
+ Revision: 930226
- ovl: allow zero size xattr
- ovl: use a minimal buffer in ovl_copy_xattr
- ovl: move super block magic number to magic.h
- ovl: root: copy attr
- ovl: setattr: check permissions before copy-up
- ovl: check dentry positiveness in ovl_cleanup_whiteouts()
- update to 4.4.1

* Thu Jan 28 2016 tmb <tmb> 4.4.0-3.mga6
+ Revision: 928366
- update to 4.4.1-rc1
- drm/radeon: Update radeon_get_vblank_counter_kms() (fdo#93879)

* Thu Jan 21 2016 tmb <tmb> 4.4.0-2.mga6
+ Revision: 926272
- KEYS: Fix keyring ref leak in join_session_keyring() (CVE-2016-0728)
- libata: disable forced PORTS_IMPL for >= AHCI 1.3

* Mon Jan 11 2016 tmb <tmb> 4.4.0-1.mga6
+ Revision: 921476
- update to 4.4 final

* Sat Jan 09 2016 tmb <tmb> 4.4.0-0.rc8.2.mga6
+ Revision: 920748
- add post -rc8 fixes from git
- drm/etnaviv: unlock on error in etnaviv_gem_get_iova()
- drm/etnaviv: fix workaround for GC500
- add VC4 (Rpi) 3D acceleration support
- add etnaviv / vivante gpu support

* Mon Jan 04 2016 tmb <tmb> 4.4.0-0.rc8.1.mga6
+ Revision: 919390
- make psmouse modular (mga#15660)
- update to 4.4-rc8

* Wed Dec 30 2015 tmb <tmb> 4.4.0-0.rc7.3.mga6
+ Revision: 916929
- add Rpi 2 support
- net, socket, socket_wq: fix missing initialization of flags
- add post -rc7 git fixes

* Mon Dec 28 2015 tmb <tmb> 4.4.0-0.rc7.2.mga6
+ Revision: 916602
- temporarily disable perf
- update to 4.4-rc7
+ blino <blino>
- include arch/x86/ras in non-x86 devel packages, since it is needed by drivers/ras
- disable versatile config on ARM (to be re-enabled later)
- build desktop kernel on ARM and drop Kirkwood kernel
- drop ARM Kirkwood config and instead create a multiplatform ARMv5 config enabling Kirkwood (Kirkwood options not ported yet)

* Wed Dec 23 2015 tmb <tmb> 4.4.0-0.rc6.2.mga6
+ Revision: 913717
- add post -rc6 git fixes
+ blino <blino>
- create_configs: explicitely set GDB_SCRIPTS=n when debug is enabled, to avoid prompt in interactive build
- create_configs: factorize debug settings and use it on ARM

* Mon Dec 21 2015 tmb <tmb> 4.4.0-0.rc6.1.mga6
+ Revision: 913257
- update defconfigs
- update aufs to 4.4-rc
- drop merged patches
- update to 4.4-rc6

* Sat Dec 12 2015 tmb <tmb> 4.3.2-2.mga6
+ Revision: 909772
- x86 smpboot: Re-enable init_udelay=0 by default on modern CPUs
- ovl: fix permission checking for setattr
- update to 4.3.3-rc1

* Fri Dec 11 2015 tmb <tmb> 4.3.2-1.mga6
+ Revision: 909573
- add -stable net fixes from DaveM
- certs: add .gitignore to stop git nagging about x509_certificate_list
- update to 4.3.2

* Wed Dec 09 2015 tmb <tmb> 4.3.1-1.mga6
+ Revision: 909204
- update to 4.3.1
  * drop merged patches

* Sat Dec 05 2015 tmb <tmb> 4.3.0-5.mga6
+ Revision: 908279
- bump rel for broken arm buildsystem
- rebuild with gcc 5.3.0 final

* Fri Dec 04 2015 tmb <tmb> 4.3.0-3.mga6
+ Revision: 908122
- drm: Fix an unwanted master inheritance v2
- drm/i915: Fix RPS pointer passed from wait_ioctl to i915_wait_request
- iwlwifi: Add new PCI IDs for the 8260 series
- x86/setup: Fix recent boot crash on 32-bit SMP machines

* Sun Nov 29 2015 tmb <tmb> 4.3.0-2.mga6
+ Revision: 907052
- ACPI / video: Add a quirk to force acpi-video backlight on
  Dell XPS L421X
- ACPI / video: Add a quirk to force native backlight on Lenovo
  IdeaPad S405
- ahci: Add Marvell 88se91a2 device id
- ahci: add new Intel Lewisburg IDs
- Revert "x86/efi: Request desired alignment via the PE/COFF
  headers"
- Revert "x86/mm/mtrr: Remove kernel internal MTRR interfaces:
  unexport mtrr_add() and mtrr_del()" as it breaks nvidia304

* Sat Nov 21 2015 tmb <tmb> 4.3.0-1.mga6
+ Revision: 904751
- update firmware conflicts to get new firmware in initrds
- update perf filelist
- update rtl8723bs driver
- add current -stable queue
- update filelists
- update mrproper patch
- update defconfigs
- drop merged patch
- update aufs to 4.3
- update to 4.3.0
+ blino <blino>
- buildrequire numa only on x86 (to match its ExclusiveArch)

* Tue Nov 10 2015 tmb <tmb> 4.2.6-1.mga6
+ Revision: 901316
- rtlwifi: rtl8821ae: Fix lockups on boot
- KVM: x86: work around infinite loop in microcode when #AC is delivered
  (CVE-2015-5307)
- KVM: svm: unconditionally intercept #DB (CVE-2015-8104)
- netfilter: ipset: Fix extension alignment
- netfilter: ipset: Fix hash:* type expiration
- netfilter: ipset: Fix hash type expire: release empty hash bucket block
- netfilter: Fix removal of GRE expectation entries created by PPTP
- update to 4.2.6
  * drop merged patches

* Wed Oct 28 2015 tmb <tmb> 4.2.5-1.mga6
+ Revision: 895999
- silence DT warnings on non-DT 32bit installs (mga#17010)
- ath9k: declare required extra tx headroom
- mac80211: Fix hwflags debugfs file format
- mmc: core: Fix init_card in 52Mhz
- update to 4.2.5
  * drop merged patches

* Fri Oct 23 2015 tmb <tmb> 4.2.4-1.mga6
+ Revision: 894637
- revert: 'x86/efi: Fix boot crash by mapping EFI memmap entries
  bottom-up at runtime, instead of top-down' (already in 4.2.4)
- alps: Only Dell Latitude D420/430/620/630 have separate stick button bits
- btrfs: fix possible leak in btrfs_ioctl_balance()
- iwlwifi: fix firmware filename for 3160
- x86/efi: Fix boot crash by mapping EFI memmap entries bottom-up at runtime,
  instead of top-down
- x86/efi: Fix multiple GOP device support
- add current -stable queue
- update to 4.2.4
  * drop merged patches
- conflict too old x11-driver-input-vmmouse (mga#16954)

* Sat Oct 03 2015 tmb <tmb> 4.2.3-1.mga6
+ Revision: 886034
- thunderbolt: Allow loading of module on recent Apple MacBooks
  with thunderbolt 2 controller
- usb: phy: phy-generic: Fix reset behaviour on legacy boot
- xhci: change xhci 1.0 only restrictions to support xhci 1.1
- x86/efi: Fix boot crash by mapping EFI memmap entries bottom-up
  at runtime, instead of top-down
- update to 4.2.3
  * drop merged patches

* Fri Oct 02 2015 tmb <tmb> 4.2.2-2.mga6
+ Revision: 885731
- rtlwifi: rtl8821ae: Fix system lockups on boot
- Bind mount escape fixes (CVE-2015-2925)
- netfilter: conntrack: use nf_ct_tmpl_free in CT/synproxy error paths (mga#16867)
- netfilter: nfnetlink: work around wrong endianess in res_id field
- netfilter: bridge: fix IPv6 packets not being bridged with CONFIG_IPV6=n
- netfilter: nf_tables: Use 32 bit addressing register from nft_type_to_reg()
- netfilter: ipset: Out of bound access in hash:net* types fixed
- netfilter: ipset: Fixing unnamed union init
- zram: fix possible use after free in zcomp_create()
- hp-wmi: limit hotkey enable

* Wed Sep 30 2015 tmb <tmb> 4.2.2-1.mga6
+ Revision: 885401
- update dkms conflicts
- add current -stable net queue
- add 4.2 buildfixes for ndiswrapper, rtl823bs, shuttle-wmi
- update to 4.2.2
- update filelists
- update defconfigs
- update aufs to 4.2
- drop merged patches
- rebase 3rdparty-merge, mach64, psd patches

* Sun Sep 20 2015 tmb <tmb> 4.1.8-1.mga6
+ Revision: 881929
- sync with mga5
  * update to 4.1.8
    * drop merged patches
  * arm: rockchip: fix broken build
  * aufs3: mmap: Fix races in madvise_remove() and sys_msync() (CVE pending)
  * cpu/cacheinfo: Fix teardown path (mga#16527)

* Thu Sep 17 2015 tmb <tmb> 4.1.7-1.mga6
+ Revision: 880038
- sync with mga5
  * update to 4.1.7
  * drop merged / obsolete patches
  * add current -stable queue
  * Input: evdev - do not report errors from flush()
  * Revert "SCSI: Fix NULL pointer dereference in runtime PM"
  * SCSI: Fix NULL pointer dereference in RTPM of block layer

* Sat Aug 29 2015 tmb <tmb> 4.1.6-5.mga6
+ Revision: 871097
- add -stable net fixes queue from DaveM
- enable early microcode loading (mga#16657)

* Tue Aug 25 2015 tmb <tmb> 4.1.6-4.mga6
+ Revision: 869354
- SCSI: Fix NULL pointer dereference in runtime PM
- Revert "sched/x86_64: Don't save flags on context switch"
- x86/apic: Fix fallout from x2apic cleanup
- x86/idle: Restore trace_cpu_idle to mwait_idle() calls
- drm/i915: remove HBR2 from chv supported list
- drm/i915: Avoid TP3 on CHV

* Fri Aug 21 2015 tmb <tmb> 4.1.6-3.mga6
+ Revision: 867049
- Revert "ext4: remove block_device_ejected"
- Revert "libata-eh: Set 'information' field for autosense"
- Revert "libata: Implement support for sense data reporting"
- Revert "libata: Implement NCQ autosense"
- add current -stable queue

* Thu Aug 20 2015 tmb <tmb> 4.1.6-2.mga6
+ Revision: 866683
- rebuild with gcc 5.2.1

* Tue Aug 18 2015 tmb <tmb> 4.1.6-1.mga6
+ Revision: 865421
- update to 4.1.6

* Thu Aug 13 2015 tmb <tmb> 4.1.5-1.mga6
+ Revision: 864552
- clean tools tree in source rpm to keep it noarch
- update to 4.1.5

* Tue Aug 04 2015 tmb <tmb> 4.1.4-1.mga6
+ Revision: 861122
- update tools, firmware and driver requires and conflicts
- update to 4.1.4
  * drop merged patch

* Wed Jul 22 2015 tmb <tmb> 4.1.3-1.mga6
+ Revision: 856194
- update to 4.1.3
  * drop merged patches

* Fri Jul 10 2015 tmb <tmb> 4.1.2-1.mga6
+ Revision: 853190
- add current -stable queue
- update to 4.1.2
  * drop merged patches

* Tue Jul 07 2015 tmb <tmb> 4.1.1-1.mga6
+ Revision: 852299
- add current -stable queue
- update to 4.1.1

* Thu Jun 25 2015 tmb <tmb> 4.1.0-1.mga6
+ Revision: 843965
- export missing symbols for aufs
- fix ndiswrapper build with 4.0+ series kernels
- update -devel/-source filelists
- upate 3rdparty merge and mrproper patches
- update defconfigs
- update to aufs4
- drop merged / obsolete patches
- update to 4.1

* Sat Jun 13 2015 tmb <tmb> 3.19.8-3.mga5
+ Revision: 823046
- require fixed dracut, and conflict old firmware-nonfree and gfxboot-theme
- ahci: avoton port-disable reset-quirk
- ALSA: hda - Add Conexant codecs CX20721, CX20722, CX20723 and CX20724
- ALSA: hda - Fix noise on AMD radeon 290x controlle
- block: Make CFQ default to IOPS mode on SSDs
- cfq-iosched: fix the setting of IOPS mode on SSDs
- drm/plane-helper: Adapt cursor hack to transitional helpers
- drm/radeon: add new bonaire pci id
- d_walk() might skip too much
- ext4: check for zero length extent explicitly
- ext4: fix NULL pointer dereference when journal restart fails
- fs/binfmt_elf.c:load_elf_binary(): return -EINVAL on zero-length mappings
- iwlwifi: mvm: clean net-detect info if device was reset during suspend
- iwlwifi: mvm: Free fw_status after use to avoid memory leak
- iwlwifi: pcie: prevent using unmapped memory in fw monitor
- jbd2: fix r_count overflows leading to buffer overflow in journal recovery
- kvm: fix crash in kvm_vcpu_reload_apic_access_page
- libata: Blacklist queued TRIM on all Samsung 800-series
- mm, numa: really disable NUMA balancing by default on single node machine
- rt2x00: add new rt2800usb device DWA 130
- rtlwifi: rtl8192cu: Fix kernel deadlock
- sched: Handle priority boosted tasks proper in setscheduler()
- vfs: read file_handle only once in handle_to_path
- x86/fpu: Disable XSAVES* support for now
- x86/mce: Fix MCE severity messages
- xfs: xfs_attr_inactive leaves inconsistent attr fork state behind
- xfs: xfs_iozero can return positive errno
- kvm: x86: fix kvm_apic_has_events to check for NULL pointer (CVE pending)
- xen/pciback: Don't disable PCI_COMMAND on PCI device reset (CVE-2015-2150)
- ozwpan: Use unsigned ints to prevent heap overflow (CVE-2015-4001)
- ozwpan: Use proper check to prevent heap overflow (CVE-2015-4002)
- ozwpan: unchecked signed subtraction leads to DoS (CVE-2015-4002)
- ozwpan: divide-by-zero leading to panic (CVE-2015-4003)
- disable RT_GROUP_SCHED
- update to v3.19.8-ckt1
  * drop merged patches

* Fri May 22 2015 tmb <tmb> 3.19.8-2.mga5
+ Revision: 822495
- aio: fix serial draining in exit_aio()
- drm/i915: silence PCH transcoder FIFO underrun messages (mga#14869)
- gpio: sysfs: fix memory leaks and device hotplug
- mmc: card: Don't access RPMB partitions for normal read/write
- mmc: core: add missing pm event in mmc_pm_notify to fix hib restore
- mmc: sh_mmcif: Fix timeout value for command request
- mm/memory-failure: call shake_page() when error hits thp tail page
- mm: soft-offline: fix num_poisoned_pages counting on concurrent events
- pinctrl: Don't just pretend to protect pinctrl_maps, do it for real
- RDMA/CMA: Canonize IPv4 on IPV6 sockets properly
- vhost/scsi: potential memory corruption (CVE-2015-4036)
- ACPICA: Tables: Change acpi_find_root_pointer() to use acpi_physical_address
- ACPICA: Utilities: Cleanup to enforce ACPI_PHYSADDR_TO_PTR()/ACPI_PTR_TO_PHYSADDR()
- ACPICA: Utilities: Cleanup to convert physical address printing formats
- ACPICA: Utilities: Cleanup to remove useless ACPI_PRINTF/FORMAT_xxx helpers
- media: Fix regression in some more dib0700 based devices
- md/raid0: fix restore to sector variable in raid0_make_request
- drm: Zero out invalid vblank timestamp in drm_update_vblank_count
- drm/amdkfd: allow unregister process with queues
- drm/radeon: Use drm_calloc_ab for CS relocs
- drm/radeon: adjust pll when audio is not enabled
- drm/radeon: add SI DPM quirk for Sapphire R9 270 Dual-X 2G GDDR5
- drm/radeon: fix lockup when BOs aren't part of the VM on release
- drm/radeon: reset BOs address after clearing it
- drm/radeon: check new address before removing old one
- drm/radeon: disable semaphores for UVD V1 (v2)
- drm/radeon: fix userptr BO unpin bug v3
- drm/radeon: make VCE handle check more strict
- drm/radeon: make UVD handle checking more strict
- drm/radeon: more strictly validate the UVD codec
- drm/i915: Assume dual channel LVDS if pixel clock necessitates it
- drm/i915: Add missing MacBook Pro models with dual channel LVDS
- drm/i915/dp: there is no audio on port A

* Mon May 11 2015 tmb <tmb> 3.19.8-1.mga5
+ Revision: 821867
- mnt: Fail collect_mounts when applied to unmounted mounts
- update to 3.19.8
  * drop merged patches

* Mon May 11 2015 tmb <tmb> 3.19.7-2.mga5
+ Revision: 821775
- update patches to disable async_suspend for Jmicron
- SCSI: add 1024 max sectors black list flag (needed for QNAP)
- xhci: fix isoc endpoint dequeue from advancing too far on transaction error
- xhci: Solve full event ring by increasing TRBS_PER_SEGMENT to 256
- xhci: gracefully handle xhci_irq dead device
- writeback: use |1 instead of +1 to protect against div by zero
- ALSA: emu10k1: Fix card shortname string buffer overflow
- ALSA: emu10k1: Emu10k2 32 bit DMA mode
- uas: Allow uas_use_uas_driver to return usb-storage flags
- uas: Add US_FL_MAX_SECTORS_240 flag
- uas: Set max_sectors_240 quirk for ASM1053 devices
- cdc-acm: prevent infinite loop when parsing CDC headers
- usb: chipidea: otg: remove mutex unlock and lock while stop and start role
- btrfs: unlock i_mutex after attempting to delete subvolume during send
- ext4: move check under lock scope to close a race.
- mnt: Fix fs_fully_visible to verify the root directory is visible
- path_openat(): fix double fput(
- splice: sendfile() at once fails for big files
- blk-mq: fix CPU hotplug handling
- blk-mq: fix race between timeout and CPU hotplug
- blk-mq: fix FUA request hang
- blk-mq: don't lose requests if a stopped queue restarts
- ACPICA: Add "Windows 2015" string to _OSI support
- ACPI / SBS: Enable battery manager when present
- ACPI / table: Use pr_debug() instead of pr_info() for MADT table scanning
- ACPI / video: Allow forcing native backlight on non win8 machines
- pull in upstream fixes/cleanups for rtl8723bs

* Fri May 08 2015 tmb <tmb> 3.19.7-1.mga5
+ Revision: 821480
- ACPI / PNP: add two IDs to list for PNPACPI device enumeration
- ACPI / SBS: Add 5 us delay to fix SBS hangs on MacBook
- ext4: fix data corruption caused by unwritten and delayed extents
- md/raid5: don't record new size if resize_stripes fails.
- x86/efi: Store upper bits of command line buffer address in ext_cmd_line_ptr
- efi: Fix error handling in add_sysfs_runtime_map_entry()
- x86/spinlocks: Fix regression in spinlock contention detection
- ACPI / init: Fix the ordering of acpi_reserve_resources()
- bpf: fix 64-bit divide
- clk: at91: usb: fix determine_rate prototype
- cxgb4: Fix MC1 memory offset calculation
- mlx4: Fix tx ring affinity_mask creation
- net/mlx4_en: Schedule napi when RX buffers allocation fails
- route: Use ipv4_mtu instead of raw rt_pmtu
- add Realtek 8723A/B SDIO / SPI WiFi (mga#15874)
- update to 3.19.7 final

* Sun May 03 2015 tmb <tmb> 3.19.6-2.mga5
+ Revision: 821129
- fix filelists
- net: add sk_fullsock() helpe
- inet: add TCP_NEW_SYN_RECV state
- ipv4: Missing sk_nulls_node_init() in ping_unhash() (CVE-2015-3636)
- PCI: ACS quirks for Intel Lynx Point (9-series) and Wellsburg (X99)
  PCH root ports
- update to 3.19.7-rc1

* Sat May 02 2015 tmb <tmb> 3.19.6-1.mga5
+ Revision: 821037
- conflict old efibootmgr so we use the fixed one
- conflict old kernel-firmware-nonfree to get newest one in initrd
- switch squashfs decompressor from percpu to multi on desktop kernels
- brcmfmac: avoid null pointer access when brcmf_msgbuf_get_pktid() fails
- btrfs: don't accept bare namespace as a valid xattr
- btrfs: fix inode eviction infinite loop after cloning into it
- btrfs: fix inode eviction infinite loop after extent_same ioctl
- btrfs: fix log tree corruption when fs mounted with -o discard
- ip_forward: Drop frames with attached skb->sk
- KVM: x86: Fix MSR_IA32_BNDCFGS in msrs_to_save
- md: fix md io stats accounting broken
- net: add skb_checksum_complete_unset
- net: do not deplete pfmemalloc reserve
- net: fix crash in build_skb()
- net/mlx4_en: Prevent setting invalid RSS hash function
- perf/x86/intel: Fix Core2,Atom,NHM,WSM cycles:pp events
- ppp: call skb_checksum_complete_unset in ppp_receive_frame
- pxa168: fix double deallocation of managed resources
- tcp: avoid looping in tcp_send_fin()
- tcp: fix possible deadlock in tcp_send_fin()
- usb: gadget: printer: enqueue printer's response for setup request
- x86/asm/decoder: Fix and enforce max instruction size in the insn decoder
- update to 3.19.6
  * drop merged patches

* Fri Apr 17 2015 tmb <tmb> 3.19.4-2.mga5
+ Revision: 820405
- update to 3.19.5-rc1
  * drop merged patches
- update conflicts on btrfs-progs
- update conflicts on plymouth
- only change symlinks if initrd creation succeeded to avoid breakage
- take care of vmlinuz and initrd.img symlinks (mga#15710)
- conflict too old grub2(-efi) (mga#15532)

* Tue Apr 14 2015 tmb <tmb> 3.19.4-1.mga5
+ Revision: 820203
- efivarfs: Ensure VariableName is NUL-terminated
- ALSA: hda/realtek - Support Dell headset mode for ALC256
- ALSA: hda/realtek - Support headset mode for ALC286/288
- ALSA: hda/realtek - Support Dell headset mode for ALC288
- ALSA: bebob: fix to processing in big-endian machine for sending cue
- ALSA: hda - Add dock support for Thinkpad T450s (17aa:5036)
- ALSA: hda - Add one more node in the EAPD supporting candidate list
- ALSA: hda - Fix headphone pin config for Lifebook T731
- ALSA: hda/realtek - Make more stable to get pin sense for ALC283
- ALSA: usb - Creative USB X-Fi Pro SB1095 volume knob support
- update to 3.19.4
  * drop merged patches
- btrfs: fix BUG_ON in btrfs_orphan_add() when delete unused block group

* Fri Apr 03 2015 tmb <tmb> 3.19.3-1.mga5
+ Revision: 819581
- IB/uverbs: Prevent integer overflow in ib_umem_get address arithmetic
  (CVE-2014-8159)
- drm: Fixup racy refcounting in plane_force_disable
- btrfs: simplify insert_orphan_item
- Input: psmouse - remove hardcoded touchpad size from the focaltech driver
- Input: psmouse - ensure that focaltech reports consistent coordinates
- Input: psmouse - disable changing resolution/rate/scale for FocalTech
- Input: psmouse - disable "palm detection" in the focaltech driver
- Revert "cpufreq: pcc: Enable autoload of pcc-cpufreq for ACPI processors"
  as it slows down atleast affected Proliant servers, so relying on manual
  loading is needed for those that wants this cpufreq function
- iommu/vt-d: Detach domain *only* from attached iommus
- genirq: Set initial affinity in irq_set_affinity_hint()
- video: fbdev: fix sys_copyarea
- video: fbdev: Add additional vesa modes
- video: fbdev: Check Standard Timing against DMT
- video: fbdev: Validate mode timing against monspec
- video: fbdev: Fix sparse warning messages
- video: fbdev: fix CVT vertical front and back porch values
- update to 3.19.3 final

* Tue Mar 24 2015 tmb <tmb> 3.19.2-2.mga5
+ Revision: 819186
- video: fbdev: fix possible null dereference
- ensure new plymouth gets in initrd (mga#15486)
- update to 3.19.3-rc1

* Wed Mar 18 2015 tmb <tmb> 3.19.2-1.mga5
+ Revision: 818836
- update conflicts on radeon-firmware and kernel-firmware-nonfree for latest firmwares in initrd
- conflict old mageia-gfxboot-theme to get mga5 theme in initrd (mga#15486)
- sched/idle/x86: Restore mwait_idle() to fix boot hangs, improve
  power savings and to improve performance
- sched/idle/x86: Optimize unnecessary mwait_idle() resched IPIs
- drm/i915: gen4: work around hang during hibernation
- update to 3.19.2
  * drop merged patches

* Sat Mar 14 2015 tmb <tmb> 3.19.1-2.mga5
+ Revision: 818518
- usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers
- ACPI / LPSS: provide con_id for the clkdev
- sync in -stable fixes

* Tue Mar 10 2015 tmb <tmb> 3.19.1-1.mga5
+ Revision: 818314
- update requires/conflicts on firmware to ensure latest is added to initrd
- iwlwifi: mvm: BT Coex - fix a NULL pointer exception
- brcmfmac: Add support for bcm43340/1 wireless chipsets
- b43: fix support for 5 GHz only BCM43228 model
- drop 'xhci: Clear the host side toggle manually when endpoint is 'soft
  reset'' as requested by upstream
- usb: xhci: handle Config Error Change (CEC)
- xhci: Workaround for PME stuck issues in Intel xhci
- xhci: fix reporting of 0-sized URBs in control endpoint
- drm/i915/vlv: revert back to legacy turbo (fixes random crashes)
- revert: 'netfilter: xt_recent: relax ip_pkt_list_tot restrictions' as
  it breaks iptables userspace
- update to 3.19.1

* Sat Mar 07 2015 tmb <tmb> 3.19.0-6.mga5
+ Revision: 818005
- sound: Add VT1613 AC97 codec support
- x86/fpu/xsaves: Fix improper uses of __ex_table
- x86/asm/entry/64: Remove a bogus 'ret_from_fork' optimization
- tg3: Hold tp->lock before calling tg3_halt() from tg3_init_one()
- sync in more upstream -stable fixes

* Mon Mar 02 2015 tmb <tmb> 3.19.0-5.mga5
+ Revision: 817298
- disable paravirt spinlock fixes as they need more work
- drm/i915: Push vblank enable/disable past encoder->enable/disable
- sync in stable queue
- require dracut with logitech hid fixes

* Thu Feb 26 2015 tmb <tmb> 3.19.0-4.mga5
+ Revision: 817044
- mm/gup: Replace ACCESS_ONCE with READ_ONCE
- x86/xen/p2m: Replace ACCESS_ONCE with READ_ONCE
- mac80211: Send EAPOL frames at lowest rate
- rtlwifi: Improve handling of IPv6 packets
- ext4: ignore journal checksum on remount, dont fail
- i2c-hid: Limit reads to wMaxInputLength bytes for input events
- kernel: tighten rules for ACCESS ONCE
- kernel: Fix sparse warning for ACCESS_ONCE
- kernel: make READ_ONCE() valid on const arguments
- kvm: ia64: drop kvm.h from installed user headers
- x86, mm/ASLR: Fix stack randomization on 64-bit systems

* Tue Feb 24 2015 tmb <tmb> 3.19.0-3.mga5
+ Revision: 816819
- dont use blk-mq i/o path by default as it still lacks i/o schedulers
- xhci: remove unused parameter 'xhci' in function xhci_handshake()
- xhci: clean up work to remove unused parameters for functions in xhci-mem.c
- xhci: platform: Move the Marvell quirks after the enabling of the clocks
- xhci: Allocate correct amount of scratchpad buffers
- xhci: Clear the host side toggle manually when endpoint is 'soft reset'
- x86/spinlocks/paravirt: Fix memory corruption on unlock
- procfs: fix race between symlink removals and traversals
- drm/i915/bdw: PCI IDs ending in 0xb are ULT
- drm/i915: avoid processing spurious/shared interrupts in low-power states
- drm/i915: Align initial plane backing objects correctly

* Mon Feb 23 2015 tmb <tmb> 3.19.0-2.mga5
+ Revision: 816590
- ntp: Fixup adjtimex freq validation on 32-bit systems
- blk-throttle: check stats_cpu before reading it from sysfs
- btrfs: fix fsync data loss after adding hard link to inode
- drm/radeon: fix 1 RB harvest config setup for TN/RL
- drm/radeon: fix voltage setup on hawaii
- fsnotify: Fix handling of renames in audit
- xhci: use dma_alloc_coherent with fully cleared pages
- update FocalTech patch to final revision merged upstream
- update aufs to 3.19 final
-  x86, irq: Fix regression caused by 'Treat SCI interrupt as normal
   GSI interrupt'

* Mon Feb 09 2015 tmb <tmb> 3.19.0-1.mga5
+ Revision: 814232
- update to 3.19 final
- drm/i915: Improve HiZ throughput on Cherryview
- drm/i915: Enable the HiZ RAW Stall Optimization on Broadwell
- drm/i915: Ensure the HiZ RAW Stall Optimization is on for Cherryview

* Wed Feb 04 2015 tmb <tmb> 3.19.0-0.rc7.3.mga5
+ Revision: 813327
- update to v3.19-rc7-git

* Mon Feb 02 2015 tmb <tmb> 3.19.0-0.rc7.2.mga5
+ Revision: 813107
- temporarily revert 'time: adjtimex: Validate the ADJ_FREQUENCY values'
  as it breaks userspace, atleast chrony (mga#14174)

* Mon Feb 02 2015 tmb <tmb> 3.19.0-0.rc7.1.mga5
+ Revision: 813092
- update to 3.19-rc7

* Mon Jan 26 2015 tmb <tmb> 3.19.0-0.rc6.1.mga5
+ Revision: 812417
- fix perf filelist
- update perf filelist
- update to 3.19-rc6
  * drop merged/obsolete patches
- update filelists
- update defconfigs
- release to testing
- update 3.19-rc5+ git snapshot
- rediff mrproper patch
- dont ship unneeded nios2 files
- update defconfigs
- export d_walk for aufs
- rediff mach64 and haswell speedup patches
- update aufs for kernel 3.19
- update to 3.19-rc5-git
  * drop merged patches

* Wed Jan 21 2015 tmb <tmb> 3.18.3-2.mga5
+ Revision: 811710
- sync in current stable queue
+ pterjan <pterjan>
- Fix a double up_read
- Fix SOURCE URLs

* Fri Jan 16 2015 tmb <tmb> 3.18.3-1.mga5
+ Revision: 810999
- update to 3.18.3
  * drop merged patches

* Tue Jan 13 2015 tmb <tmb> 3.18.2-1.mga5
+ Revision: 810438
- iwlwifi: mvm: fix Rx with both chains
- x86, vdso: Use asm volatile in __getcpu
- add current -stable queue
- update to 3.18.2 final
- drop merged patch

* Wed Jan 07 2015 tmb <tmb> 3.18.1-4.mga5
+ Revision: 809032
- update to 3.18.2-rc1
- mm, vmscan: prevent kswapd livelock due to pfmemalloc-throttled process
  being killed
- mm, vmscan: wake up all pfmemalloc-throttled processes at once
- enable SUNRPC_DEBUG (requested by Colin)
- ath9k: Update PCI IDs for AR9565
- Revert 'mac80211: Fix accounting of the tailroom-needed counter'
- update 'rtlwifi: Fix error when accessing unmapped memory in skb' fix
  to last revision merged upstream
- drm/i915: Make sample_c messages go faster on Haswell

* Tue Dec 30 2014 tmb <tmb> 3.18.1-3.mga5
+ Revision: 807477
- psmouse: add support for the FocalTech PS/2 protocol extensions (mga #14897)
- aufs: sync up with 3.18 stable branch
- split out fix for d_child change not in upstream aufs tree
- rcu: Fix rcu_barrier() race that could result in too-short wait
- x86: mm: consolidate VM_FAULT_RETRY handling
- x86: mm: move mmap_sem unlock from mm_fault_error() to caller
- x86: mm: fix VM_FAULT_RETRY handling
- rtlwifi: Fix error when accessing unmapped memory in skb
- mei: clean reset bit before reset
- drm/i915: Ban Haswell from using RCS flips

* Sun Dec 21 2014 tmb <tmb> 3.18.1-2.mga5
+ Revision: 804671
- net/tg3: tg3_disable_ints using uninitialized mailbox value to disable
  interrupts
- drm/i915: Filter gmch fifo underruns (mga#14867)
- drm/nouveau: fix a missed hunk of "fix regression on agp boards"
- drm/radeon: check the right ring in radeon_evict_flags()
- drm/radeon: fix for memory training on bonaire 0x6649
- drm/radeon: fix typo in CI dpm disable
- drm/radeon: work around a hw bug in MGCG on CIK
- btrfs: do not move em to modified list when unpinning
- btrfs: fix fs corruption on transaction abort if device supports discard
- btrfs: fix wrong accounting of raid1 data profile in statfs
- btrfs: make sure we wait on logged extents when fsycning two subvols
- btrfs: make sure logged extents complete in the current transaction
- isofs: Fix infinite looping over CE entries
- x86_64, switch_to(): Load TLS descriptors before switching DS and ES
- x86/tls: Disallow unusual TLS segments
- x86/tls: Validate TLS entries to protect espfix (CVE-2014-8133)
- x86, kvm: Clear paravirt_enabled on KVM guests for espfix32's benefit
  (CVE-2014-8134)
- require dracut with fixes for splitted xhci support

* Sun Dec 14 2014 tmb <tmb> 3.18.1-1.mga5
+ Revision: 803178
- fix aufs for d_child changes in 3.18.1
- update to 3.18.1
- drop merged patches
- rtlwifi: rtl8192ce: Set fw_ready flag

* Sun Dec 14 2014 tmb <tmb> 3.18.0-2.mga5
+ Revision: 803031
- require dracut with fixed mgalive module
- clk: Really fix deadlock with mmap_sem
- pull in -stable net fixes from DaveM
- genhd: check for int overflow in disk_expand_part_tbl()
- blk-mq: Avoid that __bt_get_word() wraps multiple times
- blk-mq: Fix a race between bt_clear_tag() and bt_get()
- blk-mq: Fix a use-after-free
- blk-mq: Use all available hardware queues
- blk-mq: use 'nr_cpu_ids' as highest CPU ID count for hwq <-> cpu map

* Mon Dec 08 2014 tmb <tmb> 3.18.0-1.mga5
+ Revision: 802151
- update to 3.18 final

* Fri Dec 05 2014 tmb <tmb> 3.18.0-0.rc7.2.mga5
+ Revision: 801619
- sync in upstream git fixes

* Mon Dec 01 2014 tmb <tmb> 3.18.0-0.rc7.1.mga5
+ Revision: 800144
- update to 3.18-rc7
- drop merged patch

* Sun Nov 30 2014 tmb <tmb> 3.18.0-0.rc6.1.mga5
+ Revision: 799977
- require dracut with fixed mgalive overlay fix
- update git snapshot
- fix broken rtl8192ce
- fix mach64 build with 3.18 series
- update defconfigs
- drop merged patches
- update aufs to 3.18 branch
- drop overlayfs patches (merged upstream)
- update to 3.18-rc6-git

* Fri Nov 21 2014 tmb <tmb> 3.17.4-1.mga5
+ Revision: 798123
- drm/radeon: initialize sadb to NULL in the audio code
- update to 3.17.4

* Sat Nov 15 2014 tmb <tmb> 3.17.3-1.mga5
+ Revision: 797348
- add ahci, alsa, i2c support for Intel Sunrise Point PCH / Skylake
- update to 3.17.3
- drop merged patches

* Mon Nov 10 2014 tmb <tmb> 3.17.2-4.mga5
+ Revision: 796223
- rcu: Provide counterpart to rcu_dereference() for non-RCU situations
- require dracut with fixed mgalive module
- ACPI/osl: speedup grace period in acpi_os_map_cleanup
- disable broken async_suspend on jmicron (korg#81551)
- overlayfs: barriers for opening upper-layer directory
- overlayfs: fix check for cursor
- overlayfs: fix lockdep misannotation
- overlayfs: initialize ->is_cursor
- overlayfs: don't poison cursor
- add current -stable queue (266 fixes all over)

* Tue Nov 04 2014 tmb <tmb> 3.17.2-3.mga5
+ Revision: 795417
- drm/i915: Do not store the error pointer for a failed userptr registration
- drm/i915: Do not leak pages when freeing userptr objects
- drm/radeon/dpm: disable ulv support on SI
- drm/radeon: dpm fixes for asrock systems
- lib/scatterlist: fix memory leak with scsi-mq
- Revert 'block: all blk-mq requests are tagged'
- scsi: set REQ_QUEUE for the blk-mq case
- Revert 'ACPI / EC: Add support to disallow QR_EC to be issued before
  completing previous QR_EC'
- ACPI / EC: Fix regression due to conflicting firmware behavior between
  Samsung and Acer
- re-enable Support for uevent helper

* Sat Nov 01 2014 tmb <tmb> 3.17.2-2.mga5
+ Revision: 795116
- Input: i8042 - touchpad quirks for Fujitsu Lifebook A(H)544
- ext4: fix oops when loading block bitmap failed
- re-add aufs support
- saa7146: Create a device name before it's used

* Thu Oct 30 2014 tmb <tmb> 3.17.2-1.mga5
+ Revision: 794759
- netlink: Re-add locking to netlink_lookup() and seq walker
  (fixes latency regression)
- update to 3.17.2
- drop merged patches
- update to overlayfs code being merged in upstream 3.18

* Sat Oct 25 2014 tmb <tmb> 3.17.1-2.mga5
+ Revision: 793173
- pull in current -stable queue

* Wed Oct 15 2014 tmb <tmb> 3.17.1-1.mga5
+ Revision: 756894
- mnt: Prevent pivot_root from creating a loop in the mount tree (CVE-2014-7970)
- update to 3.17.1 final
- drop merged patches

* Tue Oct 14 2014 tmb <tmb> 3.17.0-5.mga5
+ Revision: 738580
- switch to performance governor by default
- add current -stable queue (from upcoming 3.17.1)

* Fri Oct 10 2014 tmb <tmb> 3.17.0-4.mga5
+ Revision: 737832
- fs: Add a missing permission check to do_umount (CVE-2014-7975)
- irq_work: Introduce arch_irq_work_has_interrupt()
- irq_work: Force raised irq work to run on irq work interrupt
- x86: Tell irq work about self IPI support
- arm: Tell irq work about self IPI support

* Mon Oct 06 2014 tmb <tmb> 3.17.0-3.mga5
+ Revision: 737091
- update to 3.17 final
- drop merged patches

* Fri Oct 03 2014 tmb <tmb> 3.17.0-1.rc7.2.mga5
+ Revision: 736360
- update to 3.17-rc7-git

* Mon Sep 29 2014 tmb <tmb> 3.17.0-1.rc7.1.mga5
+ Revision: 731532
- update to 3.17-rc7
- disable X86_SYSFB as it breaks KMS on some systems (mga#13098)

* Sat Sep 27 2014 tmb <tmb> 3.17.0-1.rc6.2.mga5
+ Revision: 726560
- update to 3.17-rc6-git+
- reset fakerel and update comment about not changing it

* Fri Sep 26 2014 tv <tv> 3.17.0-1.rc6.1.mga5
+ Revision: 725097
- rebuild for bogus file deps

* Tue Sep 23 2014 tmb <tmb> 3.17.0-0.rc6.1.mga5
+ Revision: 720428
- update to 3.17-rc6

* Mon Sep 15 2014 tmb <tmb> 3.17.0-0.rc5.1.mga5
+ Revision: 676781
- BR perl-devel and numa-devel for perf
- define _DEFAULT_SOURCE for perf build
- update to 3.17-rc5
+ tv <tv>
- s/uggests:/Recommends:/

* Mon Sep 08 2014 tmb <tmb> 3.17.0-0.rc4.1.mga5
+ Revision: 673576
- update to 3.17-rc4-git+
- update to 3.17-rc4

* Wed Sep 03 2014 tmb <tmb> 3.17.0-0.rc3.1.mga5
+ Revision: 671160
- update conflicts on dkms packages, firmwares and tools
- update -devel and -source filelists
- fix mach64 build with 3.17
- update defconfigs
- drop merged patches
- rediff patches so they apply correctly
- temporarily disable aufs support
- update to 3.17-rc3

* Thu Jul 24 2014 tmb <tmb> 3.15.6-1.mga5
+ Revision: 656137
- update to 3.15.6
- x86_32, entry: store badsys error code in eax, fixes
  breakage introduced by CVE-2014-4508 fix

* Sun Jun 29 2014 tmb <tmb> 3.15.2-2.mga5
+ Revision: 641085
- update to 3.15.3-rc1

* Fri Jun 27 2014 tmb <tmb> 3.15.2-1.mga5
+ Revision: 640224
- revert upstream 'Bluetooth: Add a new PID/VID 0cf3/e005 for AR3012'
  as it breaks AR3011 device with same pid/vid (mga#13597)
- update to 3.15.2

* Tue Jun 17 2014 tmb <tmb> 3.15.1-1.mga5
+ Revision: 637740
- make Intel MEI modular so it can be blacklisted on problematic hw
- update to 3.15.1

* Mon Jun 09 2014 tmb <tmb> 3.15.0-1.mga5
+ Revision: 634869
- update dkms conflicts
- update defconfigs
- drop merged patches
- rebase a few patches to apply cleanly
- update aufs patches
- update to 3.15

* Thu Jun 05 2014 tmb <tmb> 3.14.5-3.mga5
+ Revision: 633390
- update to 3.14.6-rc1

* Wed Jun 04 2014 tmb <tmb> 3.14.5-2.mga5
+ Revision: 633010
- require 2014-06-03 firmwares
- add stable queue fixes

* Sun Jun 01 2014 tmb <tmb> 3.14.5-1.mga5
+ Revision: 629869
- update to 3.14.5 final

* Thu May 29 2014 tmb <tmb> 3.14.4-3.mga5
+ Revision: 627504
- ALSA: hda - Fix onboard audio on Intel H97/Z97 chipsets
- md/raid10: call wait_barrier() for each request submitted
- update to 3.14.5-rc1
- disable AUDITSYSCALL as its broken beyond repair
  (avoids CVE-2014-3917, and other upcoming CVEs)

* Wed May 21 2014 tmb <tmb> 3.14.4-2.mga5
+ Revision: 624798
- iwlwifi: mvm: disable beacon filtering
- kernfs: add back missing error check in kernfs_fop_mmap() (mga #13361)
- pull in current -stable queue

* Tue May 13 2014 tmb <tmb> 3.14.4-1.mga5
+ Revision: 622548
- drop merged patches
- update to 3.14.4

* Tue May 06 2014 tmb <tmb> 3.14.3-1.mga5
+ Revision: 620897
- drivers/tty/hvc: don't free hvc_console_setup after init
- n_tty: Fix n_tty_write crash when echoing in raw mode (CVE-2014-0196)
- tty: Fix lockless tty buffer race
- tty: serial: 8250_core.c Bug fix for Exar chips
- drop merged patches
- update to 3.14.3

* Wed Apr 30 2014 tmb <tmb> 3.14.2-2.mga5
+ Revision: 619042
- update conflicts on dkms packages that does not build against 3.14
- fix up duplicated conflicts define
- e1000e: Fix no connectivity when driver loaded with cable out
- iwlwifi: 7000: bump max API to 9
- add r8192ee wireless support
- drm/i915: restore QUIRK_NO_PCH_PWM_ENABLE
- add current -stable queue fixes

* Sun Apr 27 2014 tmb <tmb> 3.14.2-1.mga5
+ Revision: 618352
- update filelists
- fix mach64 build with 3.14
- fix ndiswrapper build with 3.14
- drop mwait_idle patches, fixed differently upstream
- update defconfigs
- drop merged / obsolete patches
- rediff patches to apply cleanly
- update to 3.14.2
- enable Intel P-state driver (mga#13080)
- switch transparent hugepages back to MADVISE
- net: ping: refcount issue in ping_init_sock() function (CVE-2014-2851)

* Fri Apr 11 2014 tmb <tmb> 3.13.10-1.mga5
+ Revision: 613489
- update to 3.13.10

* Fri Apr 04 2014 shlomif <shlomif> 3.13.9-1.mga5
+ Revision: 611702
- New version 3.13.9

* Thu Apr 03 2014 shlomif <shlomif> 3.13.8-1.mga5
+ Revision: 611584
- New version 3.13.8.

* Sat Mar 08 2014 tmb <tmb> 3.13.6-1.mga5
+ Revision: 601359
- update perf filelist
- update defconfigs
- rebase mach64 and shuttle-wmi patches
- update aufs support for kernel-3.13
- resync overlayfs support
- drop merged patches
- update to 3.13.6

* Sun Feb 23 2014 tmb <tmb> 3.12.13-2.mga5
+ Revision: 595735
- ALSA: hda - Add QEMU codec vendor ID
- sata_sil: apply MOD15WRITE quirk to TOSHIBA MK2561GSYN
- ata-pmp: enable quirk from jmicron JMB350 for JMB394
- ahci: disable NCQ on Samsung pci-e SSDs on macbooks
- Revert 'tty: Set correct tty name in 'active' sysfs attribute' as it breaks plymouth

* Sat Feb 22 2014 tmb <tmb> 3.12.13-1.mga5
+ Revision: 595403
- install source and devel as /usr/src/kernel-... to be more consistent with rpm name
- ACPICA: Add 'Windows 2013' string to _OSI support
- net: use __GFP_NORETRY for high order allocations
- enable MEMCG on server kernels (mga#12629)
- drop merged patches
- update to 3.12.13
- drop merged patches
- update to 3.12.12

* Sat Feb 01 2014 tmb <tmb> 3.12.9-1.mga4
+ Revision: 568586
- e1000e: fix compiler warnings
- e752x_edac: Fix pci_dev usage count
- kvm: x86: fix apic_base enable check
- md/raid5: fix long-standing problem with bitmap handling on write failure.
- mm: hugetlbfs: fix hugetlbfs optimization
- mm/mempolicy.c: fix mempolicy printing in numa_maps
- x86, x32: Correct invalid use of user timespec in the kernel (CVE-2014-0038)
- disable broken pci-pciprobe-CardBusNo change, should be done as DMI matching (mga#6077)
- upate to final 3.12.9

* Fri Jan 24 2014 tmb <tmb> 3.12.8-2.mga4
+ Revision: 567732
- fix xen NUMA crash (3.12.7 regression, LKML)
- drm/radeon: add UVD support for OLAND
- update to 3.12.9-rc1
- drop merged patches

* Sun Jan 19 2014 tmb <tmb> 3.12.8-1.mga4
+ Revision: 566911
- revert: usbcore: set lpm_capable field for LPM capable root hubs
  (breaks some usb devices)
- revert: 'ACPI: Add BayTrail SoC GPIO and LPSS ACPI IDs' as it causes boot hangs
- x86, cpu: Add workaround for AMD F16h Erratum 793 (CVE-2013-6885)
- x86, quirks: Add workaround for AMD F16h Erratum 792
- x86 idle: restore mwait_idle()
- b43: fix the wrong assignment of status.freq in b43_rx()
- net, via-rhine: Fix tx_timeout handling
- net: rds: fix per-cpu helper usage
- hwmon: (coretemp) Fix truncated name of alarm attributes
- writeback: Fix data corruption on NFS
- fork: Allow CLONE_PARENT after setns(CLONE_NEWPID)
- vfs: In d_path don't call d_dname on a mount point
- vfs: Fix a regression in mounting proc
- md/raid5: Fix possible confusion when multiple write errors occur
- md/raid10: fix two bugs in handling of known-bad-blocks
- md/raid10: fix bug when raid10 recovery fails to recover a block
- md: fix problem when adding device to read-only array with bitmap
- allow 64 cores/threads on desktop586 kernel too (as its also used in installer and on live i586 images)
- update to 3.12.8
- drop merged patches

* Sun Jan 12 2014 tmb <tmb> 3.12.7-1.mga4
+ Revision: 566385
- add -stable network fixes (DaveM)
- ax88179_178a: Remove AX_MEDIUM_ALWAYS_ONE bit in AX_MEDIUM_STATUS_MODE
  register to avoid TX throttling
- Input: ALPS - add support for Dolphin devices
- Input: ALPS - add support for DualPoint device on Dell XT2
- Input: ALPS - change secondary devices name
- drop merged patch
- update to 3.12.7

* Thu Jan 09 2014 tmb <tmb> 3.12.6-5.mga4
+ Revision: 565949
- xhci: Set scatter-gather limit to avoid failed block writes
- xhci: Avoid infinite loop when sg urb requires too many trbs
- staging: r8712u: Set device type to wlan
- rtlwifi: rtl8192cu: Add new device ID: Sitecom WLA2100V2
- ath9k: Use correct channel for RX packets
- ath9k: Disable cross-band FCC
- sata_sis: add missing PM support
- drm/nouveau: return offset of allocated notifier
- drm/nouveau/bios: make jump conditional
- drm/nouveau/bios: fix offset calculation for BMPv1 bioses
- ahci: add PCI ID for Marvell 88SE9170 SATA controller
- update to 3.12.7-rc2

* Tue Jan 07 2014 tmb <tmb> 3.12.6-4.mga4
+ Revision: 565325
- cpufreq: Fix timer/workqueue corruption by protecting reading governor_enabled
- update to 3.12.7-rc1

* Fri Jan 03 2014 tmb <tmb> 3.12.6-3.mga4
+ Revision: 564316
- switch i586 squashfs to percpu multi-decompressor
- ACPI: Blacklist Win8 OSI for Asus VivoBook X202E (mga#7857)
- ACPI: Blacklist Win8 OSI for some HP laptop 2013 models
- drm/ttm: Fix accesses through vmas with only partial coverage
- drm/radeon: fix asic gfx values for scrapper asics
- drm/radeon: fix UVD 256MB check
- drm/radeon/dpm: disable ss on Cayman
- drm/radeon/dpm: Fix hwmon crash
- drm/radeon: add missing display tiling setup for oland
- drm/edid: add quirk for BPC in Samsung NP700G7A-S01PL notebook
- ACPI / PCI / hotplug: Avoid warning when _ADR not present
- add current -stable queue (49 fixes)
- ACPIPHP / radeon / nouveau: Fix VGA switcheroo problem related to hotplug
- nouveau_acpi: convert acpi_get_handle() to acpi_has_method()

* Sun Dec 29 2013 tmb <tmb> 3.12.6-2.mga4
+ Revision: 563031
- drm/i915: Fix erroneous dereference of batch_obj inside reset_status
- drm/i915: Use the correct GMCH_CTRL register for Sandybridge+
- drm/i915: Take modeset locks around intel_modeset_setup_hw_state()
- x86 idle: Repair large-server 50-watt idle-power regression
- ext4: fix deadlock when writing in ENOSPC conditions
- switch to single squashfs decompressor on i586
- switch to percpu squashfs multi-decompressor on x86_64
- drop parts of Q57 patch already applied upstream (Eugene A. Shatokhin / Rosalab)
- drop 3rdparty heci driver (obsoleted by in-kernel mei driver)
- drm/radeon: fix render backend setup for SI and CIK

* Fri Dec 20 2013 tmb <tmb> 3.12.6-1.mga4
+ Revision: 559211
- update to 3.12.6

* Sun Dec 15 2013 tmb <tmb> 3.12.5-1.mga4
+ Revision: 556853
- xfs: underflow bug in xfs_attrlist_by_handle() (CVE-2013-6382)
- xfs: add capability check to free eofblocks ioctl (CVE pending)
- kvm: rtc_status.dest_map out-of-bounds access (CVE-2013-4587)
- kvm: division by zero in apic_get_tmcct() (CVE-2013-6367)
- kvm: cross page vapic_addr access (CVE-2013-6368)
- kvm: BUG_ON() in apic_cluster_id() (CVE-2013-6376)
- update to 3.12.5

* Wed Dec 04 2013 tmb <tmb> 3.12.3-1.mga4
+ Revision: 555206
- ensure new stable btrfs-progs gets in the initrd when used
- Squashfs: fix failure to unlock pages on decompress error
- update to 3.12.3

* Sat Nov 30 2013 tmb <tmb> 3.12.2-1.mga4
+ Revision: 554298
- update ndiswrapper to 1.59
- add 33 fixes from -stable queue
- update to 3.12.2

* Thu Nov 21 2013 tmb <tmb> 3.12.1-1.mga4
+ Revision: 552194
- update squashfs multi-decompressor to revision being merged in 3.13
- update to 3.12.1

* Sun Nov 17 2013 tmb <tmb> 3.12.0-3.mga4
+ Revision: 551594
- ALSA: hda - hdmi: Fix reported channel map on common default layouts
- cxgb3: Fix length calculation in write_ofld_wr() on 32-bit architectures
- hyperv-fb: add pci stub
- ipv6: ip6_dst_check needs to check for expired dst_entries
- ipv6: reset dst.expires value when clearing expire flag
- net: flow_dissector: fail on evil iph->ihl
- net/mlx4_core: Fix call to __mlx4_unregister_mac
- net: sctp: do not trigger BUG_ON in sctp_cmd_delete_tcb
- tcp: do not rearm RTO when future data are sacked
- tcp: fix SYNACK RTT estimation in Fast Open
- tcp: gso: fix truesize tracking
- tcp: only take RTT from timestamps if new data is acked
- USB: add new zte 3g-dongle's pid to option.c
- virtio-net: correctly handle cpu hotplug notifier during resuming
- xen-netback: use jiffies_64 value to calculate credit timeout
- re-enable FB_SIMPLE

* Fri Nov 08 2013 tmb <tmb> 3.12.0-2.mga4
+ Revision: 550012
- make 'Fast TSC calibration failed' message a debug one to hide it during normal boot (mga#11532)
- pull in network fixes heading for -stable tree
- gpu/drm/i915: add disable_pch_pwm module option (Colin, bko #47941)
- disable FB_SIMPLE

* Mon Nov 04 2013 tmb <tmb> 3.12.0-1.mga4
+ Revision: 549323
- update to 3.12 final

* Sat Nov 02 2013 tmb <tmb> 3.12.0-0.rc7.2.mga4
+ Revision: 549135
- squashfs: Use multiple decompressors for handling parallel I/O
- xfrm: Fix null pointer dereference when decoding sessions
- update to latest 3.12-rc7-git

* Thu Oct 31 2013 tmb <tmb> 3.12.0-0.rc7.1.mga4
+ Revision: 548128
- update to 3.12-rc7 + current git

* Sat Oct 26 2013 tmb <tmb> 3.12.0-0.rc6.2.mga4
+ Revision: 547145
- update to current 3.12-rc6-git
- require dracut-034-4 for fixed /usr mounting

* Mon Oct 21 2013 tmb <tmb> 3.12.0-0.rc6.1.mga4
+ Revision: 540652
- update to 3.12-rc6

* Wed Oct 16 2013 tmb <tmb> 3.12.0-0.rc5.2.mga4
+ Revision: 501511
- build with new gcc & binutils
- update to latest git

* Mon Oct 14 2013 tmb <tmb> 3.12.0-0.rc5.1.mga4
+ Revision: 496717
- update to 3.12-rc5
- drop merged/obsolete patches
- fix ndiswrapper and mach64 drivers build with 3.12
- update aufs patch
- update overlayfs patches
- rediff IFWLOG patch
- update defconfigs
- update dkms conflicts

* Thu Oct 03 2013 tmb <tmb> 3.11.4-1.mga4
+ Revision: 490925
- update to 3.11.4
- drop merged patch

* Mon Sep 30 2013 tmb <tmb> 3.11.2-2.mga4
+ Revision: 489560
- require fixed dracut
- update to 3.11.3-rc1

* Fri Sep 27 2013 tmb <tmb> 3.11.2-1.mga4
+ Revision: 487565
- update dkms conflicts
- update to 3.11.2

* Wed Sep 25 2013 tmb <tmb> 3.11.1-1.mga4
+ Revision: 486267
- temporarily disable broken dothan-3 patch
- net: sync some IP headers with glibc
- update defconfigs
- update filelists
- rebase IBM BladeCenter HS20 hid quirk
- rebase shuttle-wmi driver
- rebase i915 patches for bko#59841
- update aufs for 3.11
- update overlayfs support
- drop merged patches
- update to 3.11.2-rc1
- disable GOLDFISH emulator support (mga #11062)

* Tue Sep 03 2013 tmb <tmb> 3.10.10-3.mga4
+ Revision: 474665
- [SCSI] pm80xx: fix Adaptec 71605H hang
- HID: Revert 'Revert 'HID: Fix logitech-dj: missing Unifying device issue''
- drm/i915: i915.disable_pch_pwm overrides PCH_PWM_ENABLE quirk,
            Allow disabling of eDP BPP overrides (coling, bko#59841)

* Fri Aug 30 2013 tmb <tmb> 3.10.10-2.mga4
+ Revision: 473322
- switch server kernel image compression back to GZIP so it works with
  Amazon EC2 and other older XEN setups
- Input: elantech - fix packet check for v3 and v4 hardware
- Input: wacom - add support for 0x300 and 0x301
- Input: xpad - add signature for Razer Onza Classic Edition
- drm/nouveau/mc: fix race condition between constructor and request_irq()
- jfs: fix readdir cookie incompatibility with NFSv4
- sunrpc: Fix memory corruption issue on 32-bit highmem systems
- workqueue: cond_resched() after processing each work item

* Thu Aug 29 2013 tmb <tmb> 3.10.10-1.mga4
+ Revision: 473059
- drop merged patches
- update to 3.10.10
- enable checkpoint/restore (requested by blino)

* Wed Aug 21 2013 tmb <tmb> 3.10.9-1.mga4
+ Revision: 469169
- mac80211: add a flag to indicate CCK support for HT clients
- ath9k: Enable PLL fix only for AR9340/AR9330
- net_sched: psched_ratecfg_precompute() improvements
- net_sched: restore "linklayer atm" handling
- dtop merged patches
- update to 3.10.9

* Sat Aug 17 2013 tmb <tmb> 3.10.7-1.mga4
+ Revision: 467151
- drm/radeon: fix WREG32_OR macro setting bits in a register
- drm/radeon/r7xx: fix copy paste typo in golden register setup
- add current stable queue (43 fixes)
- drop merged patches
- update to 3.10.7

* Mon Aug 12 2013 tmb <tmb> 3.10.6-1.mga4
+ Revision: 465860
- zram: allow request end to coincide with disksize
- drm/radeon: always program the MC on startup
- drm/radeon: fix halting UVD v2
- drm/radeon: only save UVD bo when we have open handles v2
- drop revert of "SCSI: sd: Update WRITE SAME heuristics" as the breakage
  is now fixed with "SCSI: Don't attempt to send extended INQUIRY command
  if skip_vpd_pages is set"
- add current -stable queue (44 fixes)
- update to 3.10.6 final

* Sun Aug 11 2013 tmb <tmb> 3.10.5-4.mga4
+ Revision: 465432
- update to 3.10.6-rc1
- drop merged patches

* Mon Aug 05 2013 tmb <tmb> 3.10.5-3.mga4
+ Revision: 464025
- atl1c: Fix misuse of netdev_alloc_skb in refilling rx ring
- iwlwifi: dvm: don't send BT_CONFIG on devices w/o Bluetooth
- iwlwifi: mvm: set SSID bits for passive channels
- disable FW_LOADER_USER_HELPER as udev is not doing any fw loading anymore
- fix and enable ndiswrapper with 3.10 series kernels (arch)
- drop 2 broken stable queue fixes

* Mon Aug 05 2013 tmb <tmb> 3.10.5-2.mga4
+ Revision: 463810
- add current stable queue (78 fixes)

* Sun Aug 04 2013 tmb <tmb> 3.10.5-1.mga4
+ Revision: 463583
- disable Initio 162x SATA support as its seriously broken
- drop merged patches
- update to 3.10.5

* Mon Jul 29 2013 tmb <tmb> 3.10.4-1.mga4
+ Revision: 460396
- revert: 'SCSI: sd: Update WRITE SAME heuristics' introduced upstream in
  3.10.3 as it breaks several usb3 connected disks.
- drop merged patches
- update to 3.10.4

* Fri Jul 26 2013 tmb <tmb> 3.10.3-1.mga4
+ Revision: 458375
- md: Remove recent change which allows devices to skip recovery
- md/raid5: fix interaction of 'replace' and 'recovery'
- md/raid10: remove use-after-free bug
- add current -stable queue fixes (44)
- drop merged patches
- update to 3.10.3

* Mon Jul 22 2013 tmb <tmb> 3.10.2-1.mga4
+ Revision: 457038
- suggest cpupower
- update to 3.10.2
- update conflicts on dkms drivers to get 3.10 for better upgrade support
- update conflicts on radeon-firmware to get all uvd and smc in initrd
- iwlwifi/mvm: enable 7000 series devices
- iwlwifi: pcie: don't read INTA register in ICT IRQ handler
- iwlwifi: make TX seqno validation more efficient
- Input: elantech - fix for newer hardware versions (v7)
- cpufreq/intel_pstate: Change to scale off of max P-state
- cpufreq: Revert commit 2f7021a to fix CPU hotplug regression

* Sun Jul 14 2013 tmb <tmb> 3.10.1-1.mga4
+ Revision: 454223
- disable broken ndiswrapper
- disable broken ppscsi driver
- disable parallell build for perf
- cpufreq: Revert commit a66b2e to fix cpufreq regression during suspend/resume
- make each kernel-*(-devel) suggest the matching -latest package
- suggest iw as we also suggest crda
- require new kernel-firmware
- conflict too old radeon-firmware to get the new UVD firmware in initrd
- update filelists
- re-add aufs support (mga#8314)
- update defconfigs
- drop merged patches
- rediff patches to apply cleanly
- update overlayfs patches
- update to 3.10.1
- add support for extended stable builds

* Fri Jun 28 2013 tmb <tmb> 3.9.8-1.mga4
+ Revision: 447730
- bcma: add support for BCM43142 (mga#9378, mga#10611)
- drop merged patches
- add current -stable queue (17 fixes)
- update to 3.9.8

* Fri Jun 21 2013 tmb <tmb> 3.9.7-1.mga4
+ Revision: 445339
- rtlwifi: rtl8192cu: Fix problem in connecting to WEP or WPA(1) networks
- ath9k_htc: Handle IDLE state transition properly
- update to 3.9.7

* Tue Jun 18 2013 tv <tv> 3.9.6-1.mga4
+ Revision: 444605
- new release

* Sun Jun 02 2013 tmb <tmb> 3.9.4-1.mga4
+ Revision: 434738
- fix ndiswrapper build with kernel-3.9
- add current stable queue fixes (82 fixes all over)
- fix -devel filelist
- fix up alx AR8161 breakage (mga #10079)
- conflict too old plymouth to make cleaner upgrades (mga #10128)
- dont package arc and metag arches
- enable CONFIG_FHANDLE
- update defconfigs
- drop merged patches
- BR: bc (as timeconst.pl has been replaced with a bc script)
- update to 3.9.4

* Tue May 14 2013 tmb <tmb> 3.8.13-1.mga3
+ Revision: 413188
- ACPICA: Fix possible buffer overflow during a field unit read operation
- ALSA: HDA: Fix Oops caused by dereference NULL pointer
- ARM: OMAP: RX-51: change probe order of touchscreen and panel SPI devices
- ASoC: wm8994: missing break in wm8994_aif3_hw_params()
- dm stripe: fix regression in stripe_width calculation
- dm table: fix write same support
- KVM: VMX: fix halt emulation while emulating invalid guest sate
- nfsd4: don't allow owner override on 4.1 CLAIM_FH opens
- nfsd: fix oops when legacy_recdir_name_error is passed a -ENOENT error
- shm: fix null pointer deref when userspace specifies invalid hugepage size
- revert 'drm/i915: set CPT FDI RX polarity bits based on VBT' as it
  triggers OOM on some Cougar Point systems (mga #10056)
- switch to 3.8.13 final (no change from -rc in 3.8.12-2)

* Fri May 10 2013 tmb <tmb> 3.8.12-2.mga3
+ Revision: 412824
- Input: Wacom: add support for DTH-2242 and 0x10d
- Input: ALPS: add Rushmore and Dolphin V1 support (mga #8033)
- Input: synaptics - fix 1->3 contact transition reporting
- Input: synaptics - initialize pointer emulation usage
- Input: Cypress/ps2 - fix trackpad found in Dell XPS12
- Input: Cypress APA - add support for smbus protocol
- add Cypress APA I2C Trackpad support
- update to 3.8.13-rc1
- drop merged patches

* Wed May 08 2013 tmb <tmb> 3.8.12-1.mga3
+ Revision: 412651
- drm/i915: Add no-lvds quirk for Fujitsu Esprimo Q900
- drm/i915: Fixup Oops in the pipe config computation
- drm/i915: set CPT FDI RX polarity bits based on VBT
- drm/cirrus: deal with bo reserve fail in dirty update path
- drm/cirrus: Correct register values for 16bpp
- carl9170: fix frame drop and WARN due to minstrel_ht change
- carl9170: remove fast channel change feature (unreliable)
- drm/i915: Fix detection of base of stolen memory
- drm/i915: Use MLC (l3$) for context objects
- drop merged patch
- update to 3.8.12
- update Atheros alx gigabit ethernet to latest upstream
- add support for Atheros Killer e2200 ethernet (#9979)

* Wed May 01 2013 tmb <tmb> 3.8.11-1.mga3
+ Revision: 411798
- tty: fix up atime/mtime mess, take three (Linus, upstream)
- drop merged patches
- update to 3.8.11
- dont make NLS_CODEPAGE_437 builtin

* Sat Apr 27 2013 tmb <tmb> 3.8.10-1.mga3
+ Revision: 411320
- block: fix max discard sectors limit
- drm/radeon: add some new SI PCI ids
- drm/radeon: add new richland pci ids
- aio: fix possible invalid memory access when DEBUG is enabled
- TTY: do not update atime/mtime on read/write (CVE-2013-0160)
- TTY: fix atime/mtime regression
- update to 3.8.10
- drop merged patches
- update to 3.8.9

* Mon Apr 22 2013 tmb <tmb> 3.8.8-3.mga3
+ Revision: 410885
- ssb: implement spurious tone avoidance (fixes b43 regression)
- more stable queue fixes (arm, ath9k, sched)

* Sat Apr 20 2013 tmb <tmb> 3.8.8-2.mga3
+ Revision: 410585
- kvm: fix cve-2013-1796, cve-2013-1797, cve-2013-1798
- make sure to get latest btrfs-progs in initrd if in use
- add upstream -stable queue (11 fixes)
- intel_idle: add Haswell support
- tg3: Add 57766 device support
- sort posttrans so build and source symlinks are added before calling dkms_autoinstaller
- change kernel post scripts to posttrans (#9536)

* Wed Apr 17 2013 tmb <tmb> 3.8.8-1.mga3
+ Revision: 410270
- drop removal of check in disable-aspm-link as upstream breakage has been reverted
- update to 3.8.8
- bump requires on bootloader-utils, dracut, kmod, sysfsutils, kernel-firmware
- set DEFAULT_NLS to utf8 (#9722)
- conflict too old drakxtools-backend to avoid adding bogus root=/dev/ (#9536)
- enable CONFIG_RELOCATABLE on i586 too (needed for UEFI boot)
- conflict too old lvm2 rules to make upgrades work (tv, mga #9356)

* Sat Apr 13 2013 tmb <tmb> 3.8.7-1.mga3
+ Revision: 409914
- ALSA: usb: Work around CM6631 sample rate change bug (upstream)
- drm/radeon: don't use get_engine_clock() on APUs (mga #8077, fdo #62493)
- add current -stable queue fixes (16 fixes)
- drop merged patches
- update to 3.8.7
+ rtp <rtp>
- drop uimage support. It's not compatible with dtb usage
- build dtbs on arm
- fix usage of udelay() for a msecs delay
- put zsmalloc as built-in on arm to workaround build failure

* Tue Apr 09 2013 tmb <tmb> 3.8.6-2.mga3
+ Revision: 409204
- make EFI_VARS builtin
- ata_piix: Fix DVD not dectected at some Haswell platforms
- libata: fix DMA to stack in reading devslp_timing parameters
- libata: Set max sector to 65535 for Slimtype DVD A DS8A8SH drive
- libata: Use integer return value for atapi_command_packet_set
- md: raid1,10: Handle REQ_WRITE_SAME flag in write bios
  (fixes raid10 crash on mptsas)
- drop requires on carl9170-firmware as its merged in kernel-firmware

* Sun Apr 07 2013 tmb <tmb> 3.8.6-1.mga3
+ Revision: 408736
- add -stable queue fixes (20 fixes)
- update to 3.8.6

* Sat Mar 30 2013 tmb <tmb> 3.8.5-1.mga3
+ Revision: 406608
- disable efivars as a storage backend for pstore by default
  as it can brick some computers
- SUNRPC: Add barriers to ensure read ordering in rpc_wake_up_task_queue_locked
- update to 3.8.5
- drop merged patches

* Mon Mar 18 2013 tmb <tmb> 3.8.3-2.mga3
+ Revision: 403953
- enable XEN_BALLOON_MEMORY_HOTPLUG on server kernels (#9372)
- more -stable queue fixes
- revert 2 drm/i915 patches introduced in 3.8.3 as they break more than they fix
- PCI: Remove not needed check in disable aspm link (should fix ath5k problems)
- more fixes from -stable queue

* Fri Mar 15 2013 tmb <tmb> 3.8.3-1.mga3
+ Revision: 403296
- net: ax88179_178a: add ASIX AX88179_178A USB 3.0/2.0 to gigabit ethernet
  adapter driver
- net: asix: init ASIX AX88772B MAC from EEPROM
- net: asix: handle packets crossing URB boundaries
- usb/net/asix_devices: Add USBNET HG20F9 ethernet dongle
  (requested by Colin)
- atl1c: restore buffer state
- add current -stable queue fixes (28)
- update to 3.8.3

* Sat Mar 02 2013 tmb <tmb> 3.8.1-1.mga3
+ Revision: 401081
- drm/i915: Fix Haswell/CRW PCI IDs
- update to 3.8.2-rc1
- drop merged patches

* Thu Feb 28 2013 tmb <tmb> 3.8.0-3.mga3
+ Revision: 400575
- sync up with current -stable queue (154 additional fixes all over)
- require fixed dracut

* Fri Feb 22 2013 tmb <tmb> 3.8.0-2.mga3
+ Revision: 399983
- disable 'mac80211: improve latency and throughput while software scanning' for now
- perf hists: Fix period symbol_conf.field_sep display
- perf tools: Fix build with bison 2.3 and older
- x86-32, mm: Remove reference to alloc_remap()
- x86-32, mm: Remove reference to resume_map_numa_kva()
- x86-32, mm: Rip out x86_32 NUMA remapping code
- x86, efi: Make noefi really disable EFI runtime serivces
- btrfs: access superblock via pagecache in scan_one_device
- btrfs: fix crash in log replay with qgroups enabled
- update ndiswrapper to 1.58

* Tue Feb 19 2013 tmb <tmb> 3.8.0-1.mga3
+ Revision: 399296
- update to 3.8 final
- drop merged patches
- add Intel Wellsburg PCH support to ahci, ata_piix, i2c, lpc, sound

* Fri Feb 08 2013 tmb <tmb> 3.8.0-0.rc7.1.mga3
+ Revision: 397185
- r8169: revert: 'enable ALDPS for power saving' as it breaks some hw (#8622)
- r8169: revert: 'enable internal ASPM and clock request settings' as it
  increases boot time
- update to 3.8-rc7

* Fri Feb 08 2013 tmb <tmb> 3.8.0-0.rc6.2.mga3
+ Revision: 397028
- drm/ttm: fix fence locking in ttm_buffer_object_transfer
- mac80211: improve latency and throughput while software scanning
- brcmsmac: double time for timeout
- ath9k: fix DMA idle but MAC is still stuck processing events
- rtlwifi: fix scheduling while atomic bug
- add support for Cypress PS2 Trackpads
- update to rc6-git as of: Wed Feb 6 12:11:10 2013 -0500

* Wed Feb 06 2013 tmb <tmb> 3.8.0-0.rc6.1.mga3
+ Revision: 394927
- disable perf build as it breaks on BS
- add more updates from upstream git
- add support for booting without initrd
  * https://wiki.mageia.org/en/Feature:BootSansRamdisk
  * works on ahci controllers, with ext4 and btrfs filesystems
  * theese options are now builtin: CONFIG_SCSI_MOD, CONFIG_SCSI,
    CONFIG_BLK_DEV_SD, CONFIG_ATA, CONFIG_SATA_AHCI, CONFIG_EXT4_FS,
    CONFIG_JBD2, CONFIG_BTRFS_FS, CONFIG_CRYPTO_CRC32C, CONFIG_CRC16,
    CONFIG_CRC_T10DIF, CONFIG_LIBCRC32C, CONFIG_ZLIB_DEFLATE
- update to 3.8-rc6-git
- fix perf build

* Sun Jan 27 2013 tmb <tmb> 3.8.0-0.rc5.1.mga3
+ Revision: 392632
- update to 3.8-rc5

* Fri Jan 18 2013 tmb <tmb> 3.8.0-0.rc4.1.mga3
+ Revision: 389476
- update to 3.8-rc4

* Wed Jan 16 2013 tmb <tmb> 3.8.0-0.rc3.2.mga3
+ Revision: 388788
- iwlwifi: audit single frames from AGG queue in RS
- drop __devinit/exit from heci, ndiswrapper, alx, shuttle-wmi
- update to 3.8-rc3-git as of 2013-01-16
- drop build, source symlinking of source package to kernel tree as it
  makes dkms build unusable modules
- rename -debug packages to -debuginfo
- specfile cleanups
- add more dkms conflicts
- conflict dkms packages that does not support kernel-3.8 to help upgrade ordering

* Thu Jan 10 2013 tmb <tmb> 3.8.0-0.rc3.1.mga3
+ Revision: 344645
- disable broken perf build for now
- update defconfigs
- rediff patches to apply cleanly
- drop merged zram patches
- update to 3.8-rc3
- update to 3.8-rc2-git as of 2013-01-04

* Tue Dec 18 2012 tmb <tmb> 3.7.1-1.mga3
+ Revision: 332459
- sync defconfigs
- update to 3.7.1
- fix zram oops (upstream, reported by wally)

* Tue Dec 11 2012 tmb <tmb> 3.7.0-1.mga3
+ Revision: 329575
- drop merged patch
- update to 3.7.0 final

* Thu Dec 06 2012 tmb <tmb> 3.7.0-0.rc8.1.mga3
+ Revision: 327546
- add perf bash_completion
- more filelist updates
- add 3.7 buildfixes for alx, IFWLOG, mach64, ndiswrapper
- pull in more upstream git fixes
- rediff disable-mrproper patch
- update to current rc8+ git
- update filelists
- update defconfigs
- restore patch preferring ata over ide drivers
- rediff patches to apply properly
- drop compress modules at install time patch
  (obsolete as we compress them at rpm build time)
- drop netbook kernel as it has no real advantage over desktop
  kernel anymore
- obsolete kernel-netbook*-latest kernel with the matching
  desktop kernels to keep upgrade path
- drop merged patches
- update to 3.7-rc8

* Wed Oct 31 2012 tmb <tmb> 3.6.5-1.mga3
+ Revision: 311802
- updates from stable queue:
  blkcg: Fix use-after-free of q->root_blkg and q->root_rl.blkg
  ceph: avoid 32-bit page index overflow
  ceph: fix dentry reference leak in encode_fh()
  ceph: Fix oops when handling mdsmap that decreases max_mds
  libceph: avoid NULL kref_put when osd reset races with alloc_msg
  libceph: check for invalid mapping
  floppy: don't call alloc_ordered_workqueue inside the alloc_disk loop
  floppy: do put_disk on current dr if blk_init_queue fails
  floppy: properly handle failure on add_disk loop
  gpio-timberdale: fix a potential wrapping issue
  gpiolib: Don't return -EPROBE_DEFER to sysfs, or for invalid gpios
  md/raid1: Fix assembling of arrays containing Replacements
  rbd: reset BACKOFF if unable to re-queue
- replace 'ext4: revert jbd2: don't write superblock when if its empty'
  with upstream fix: 'ext4: fix unjournaled inode bitmap modification'
  (wich properly fixes the possible data corruption bug)
- drop merged patches
- update to 3.6.5

* Sun Oct 28 2012 tmb <tmb> 3.6.4-1.mga3
+ Revision: 311107
- ext4: revert 'jbd2: don't write superblock when if its empty' (fixes possible data corruption)
- cpufreq / powernow-k8: Remove usage of smp_processor_id() in preemptible code
- add current stable queue fixes (71 fixes all over)
- update to 3.6.4

* Sun Oct 21 2012 tmb <tmb> 3.6.3-1.mga3
+ Revision: 309009
- drop merged patches
- update to 3.6.3
- add Atheros AR8161/8165 PCI-E Gigabit support (#7853)

* Wed Oct 17 2012 tmb <tmb> 3.6.2-1.mga3
+ Revision: 307752
- add mach64 and ipt_IFWLOG buildfixes for kernel-3.6
- sync in current stable queue (53 fixes)
- update defconfigs
- sync overlayfs support with opensuse
- disable acpi-video-add-blacklist-to-use-vendor-driver.patch, needs to be rewritten
- drop tools-perf-fix-strerror_r-usage.patch (merged)
- rediff patches:
  char-agp-intel-new-Q57-id.patch
  net-netfilter-psd-mdv.patch
  pci-pciprobe-CardBusNo.patch
- add include/ras/ to -devel and -source filelists
- update to 3.6.2
- move -doc to Documentation group

* Sun Sep 30 2012 tmb <tmb> 3.5.5-0.rc1.1.mga3
+ Revision: 300733
- update to 3.5.5-rc1 (262 fixes all over)

* Sat Sep 15 2012 tmb <tmb> 3.5.4-1.mga3
+ Revision: 294085
- drop merged patches
- update to 3.5.4
+ tv <tv>
- cpupower obsoletes cpufreq cpufrequtils
- set default policy as 'ondemand' (like cpufreq)

* Tue Sep 11 2012 tmb <tmb> 3.5.3-3.mga3
+ Revision: 292275
- ext3: Fix fdatasync() for files with only i_size changes (mga #7343)
- udf: Fix data corruption for files in ICB
- update defconfigs for overlayfs
- add overlayfs support (from ubuntu)
- disable broken unionfs
- sync with -stable queue (30 added fixes)

* Thu Aug 30 2012 tmb <tmb> 3.5.3-2.mga3
+ Revision: 285684
- pull in stable queue fixes (55 fixes all over)

* Sun Aug 26 2012 tmb <tmb> 3.5.3-1.mga3
+ Revision: 284238
- update to 3.5.3

* Thu Aug 16 2012 tmb <tmb> 3.5.2-1.mga3
+ Revision: 281575
- update to 3.5.2

* Sat Aug 11 2012 tmb <tmb> 3.5.1-1.mga3
+ Revision: 280494
- adapt unionfs for FD and BITS changes in 3.5.1
- enable CLEANCACHE, FRONTSWAP and ZCACHE (mga #6946)
- update to 3.5.1

* Sat Jul 28 2012 tmb <tmb> 3.5.0-1.mga3
+ Revision: 275103
- fix perf build with glibc-2.16
- fix unionfs build with 3.5 series kernels
- rediff mrproper patch
- update defconfigs
- drop merged patches
- rediff unionfs patch
- add include/memory/ to -devel and -source filelists
- update to 3.5

* Fri Jul 20 2012 tmb <tmb> 3.4.6-1.mga3
+ Revision: 272883
- add fixes from current stable queue (13 fixes)
- update to 3.4.6
- drop merged patch

* Wed Jul 18 2012 tmb <tmb> 3.4.5-1.mga3
+ Revision: 272320
- drop merged patches
- update to 3.4.5
- scsi: Silence unnecessary warnings about ioctl to partition (requested by colin)

* Sun Jul 01 2012 tmb <tmb> 3.4.4-2.mga3
+ Revision: 266170
- block: fix infinite loop in __getblk_slow
- enable EFI_STUB support (#6598)
- cifs: fix parsing of password mount option (requested by blino)
- ARM: Orion: Fix Virtual/Physical mixup with watchdog
- ARM: tegra: make tegra_cpu_reset_handler_enable() __init

* Wed Jun 27 2012 tmb <tmb> 3.4.4-1.mga3
+ Revision: 264235
- Tools: hv: verify origin of netlink connector message (CVE-2012-2669)
- drop merged patches
- update to 3.4.4

* Wed Jun 20 2012 tmb <tmb> 3.4.3-1.mga3
+ Revision: 262305
- pull in current -stable queue (61 fixes all over)
- rediff patch for added Q57 agp id
- drop merged ext4 uninit_bg fix
- update to 3.4.3

* Sat Jun 09 2012 tmb <tmb> 3.4.2-1.mga3
+ Revision: 258990
- ext4: fix the free blocks calculation for ext3 file systems w/ uninit_bg
- drop merged patches
- update to 3.4.2
- BR kmod instead of module-init-tools

* Tue Jun 05 2012 tmb <tmb> 3.4.1-1.mga3
+ Revision: 255531
- add patches from stable queue (66 fixes all over)
- require kmod instead of module-init-tools
- re-enable pwersaving by default on rt2800usb
- disable changing ata/ide link order
- update to 3.4.1 final

* Mon May 28 2012 tmb <tmb> 3.4.1-0.rc1.1.mga3
+ Revision: 247815
- BR bison for kernel utils
- BR flex for kernel utils
- BR pkgconfig(gtk+-2.0) for kernel tools
- disable acpi dsdt and events patches
- update to 3.4.1-rc1
  * drop merged patches
  * rediff IFWLOG, psd, unionfs shuttle-wmi and arm-udelay-fix patches
- add buildfix for unionfs and kernel-3.4
- add buildfix for radio-rttrack
- update defconfigs
- update filelists

* Thu May 17 2012 tmb <tmb> 3.3.6-2.mga2
+ Revision: 235853
- net/e1000: Prevent reset task killing itself (fixes deadlock)
- pull in fixes from stable queue:
  * ALSA: echoaudio: Remove incorrect part of assertion
  * ALSA: HDA: Lessen CPU usage when waiting for chip to respond
  * ALSA: hda/realtek - Add missing CD-input pin for MSI-7350 mobo
  * ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops
  * usbnet: fix skb traversing races during unlink(v2)
  * namespaces, pid_ns: fix leakage on fork() failure
- ipw2x00: add support for nl80211 clients like Network Manager (#5720)
- disable APM_CPU_IDLE as it causes some hw to hang on boot

* Sat May 12 2012 tmb <tmb> 3.3.6-1.mga2
+ Revision: 235512
- switch server kernels back to SLAB allocator as it performs better on
  bigger server hardware and workloads
- disable memory cgroups on desktop(586) and netbook kernels as it has
  unwanted overhead (server kernels still have it enabled)
- sync defconfigs for 3.3.6
- drop merged patches
- update to 3.3.6

* Thu May 10 2012 tmb <tmb> 3.3.5-1.mga2
+ Revision: 235140
- obsolete dkms-psb (replaced by in-kernel gma500_gfx)
- add current stable queue fixes:
  ARM: 7410/1: Add extra clobber registers for assembly in kernel_execve
  ARM: 7411/1: audit: fix treatment of saved ip register during syscall tracing
  ARM: 7412/1: audit: use only AUDIT_ARCH_ARM regardless of endianness
  ARM: 7414/1: SMP: prevent use of the console when using idmap_pgd
  ARM: OMAP: Revert "ARM: OMAP: ctrl: Fix CONTROL_DSIPHY register fields"
  ARM: orion5x: Fix GPIO enable bits for MPP9
  asix: Fix tx transfer padding for full-speed USB
  asm-generic: Use __BITS_PER_LONG in statfs.h
  ASoC: core: check of_property_count_strings failure
  ASoC: tlv312aic23: unbreak resume
  drm/i915: disable sdvo hotplug on i945g/gm
  drm/i915: Do no set Stencil Cache eviction LRA w/a on gen7+
  drm/i915: enable dip before writing data on gen4
  e1000: fix vlan processing regression
  Fix __read_seqcount_begin() to use ACCESS_ONCE for sequence value read
  fs/cifs: fix parsing of dfs referrals
  netem: fix possible skb leak
  net: Add memory barriers to prevent possible race in byte queue limits
  net: Fix issue with netdev_tx_reset_queue not resetting queue from XOFF state
  net: In unregister_netdevice_notifier unregister the netdevices
  net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg
  percpu, x86: don't use PMD_SIZE as embedded atom_size on 32bit
  regulator: Fix the logic to ensure new voltage setting in valid range
  sky2: fix receive length error in mixed non-VLAN/VLAN traffic
  sky2: propogate rx hash when packet is copied
  smsc95xx: mark link down on startup and let PHY interrupt deal with carrier changes
  sungem: Fix WakeOnLan
  tcp: change tcp_adv_win_scale and tcp_rmem[2]
  tcp: fix infinite cwnd in tcp_complete_cwr()
  tg3: Avoid panic from reserved statblk field access
  x86, relocs: Remove an unused variable
  xen/pci: don't use PCI BIOS service for configuration space accesses
  xen/pte: Fix crashes when trying to see non-existent PGD/PMD/PUD/PTEs
- drop merged samsung-laptop patches
- drop merged patches
- update to 3.3.5
- dell-laptop: Terminate quirks list properly (mga #5724)

* Sat Apr 28 2012 tmb <tmb> 3.3.4-1.mga2
+ Revision: 233744
- ata_piix: detect IDE mode SATA for Intel DH89xxCC
- ahci detect Marvell 88SE9172 SATA controller
- iwlwifi: use 6000G2B for 6030 device series
- iwlwifi: fix hardware queue programming
- cpupower: Require rpm-helper >= 0.24.8-1 for systemd support
- drop perf revert as it's now fixed upstream
- update to 3.3.4
- require dracut >= 017-9

* Mon Apr 23 2012 tmb <tmb> 3.3.3-1.mga2
+ Revision: 232856
- revert: "perf hists: Catch and handle out-of-date hist entry maps"
  added in stable 3.3.3 as it breaks perf build
- ath5k: do not stop queues for full calibration
- ath5k: do not re-run AGC calibration periodically
- iwlwifi: use correct released ucode version
- disable floppy autoloading as it makes some systems hang (mga #4696)
- drop merged patches
- update to 3.3.3

* Wed Apr 04 2012 tmb <tmb> 3.3.1-2.mga2
+ Revision: 228344
- ACPICA: Fix regression in FADT revision checks
- revert 'gpu/nouveau/bios: Fix tracking of BIOS image data' as it breaks some hw
- clean dkms tree on kernel uninstall
- clean -devel tree on uninstall
- drm/nouveau: create m2mf for nvd9 too
- drm/nouveau: inform userspace of relaxed kernel subchannel requirements
- drm/nouveau: select POWER_SUPPLY
- drm/nouveau: Fix crash when pci_ram_rom() returns a size of 0
- drm/nouveau/bios: Fix tracking of BIOS image data
- drm/radeon/kms: fix fans after resume
- drm/radeon: Don't dereference possibly-NULL pointer
- revert: 'x86/ioapic: Add register level checks to detect bogus io-apic
  entries' as it breaks xen
- revert: 'ath9k: fix going to full-sleep on PS idle' as it breaks atleast 9285

* Tue Apr 03 2012 tmb <tmb> 3.3.1-1.mga2
+ Revision: 228038
- drm/i915: add Ivy Bridge GT2 Server entries
- only server kernel provides drbd-api
- make sure dracut is always installed
- update defconfigs
- drm/nouveau: fix thinko causing init to fail on cards without accel
- drm/nouveau: default to 8bpc for non-LVDS panels if EDID isn't useful
- drm/nouveau/i2c: fix thinko/regression on really old chipsets
- drop merged patches
- resync radeon backport with 3.4-rc1
- update to 3.3.1
- replace kernel-tools package with separate perf and cpupower packages

* Sat Mar 24 2012 tmb <tmb> 3.3.0-2.mga2
+ Revision: 226128
- disable ath9k fix for mga #144 to verify if its still needed
- ata: add ide/ahci/raid mode support for Intel Lynx Point chipset
- nouveau: backport Kepler (GTX6xx) support
- radeon: backport support for Southern Islands (HD7xxx) GPUs and Trinity APUs
- add upstream drm changes to support gpu driver backports
- ata: prefer ata drivers over ide drivers when both are built (Anssi)

* Mon Mar 19 2012 tmb <tmb> 3.3.0-1.mga2
+ Revision: 224352
- disable framebuffer logo to try and reduce screen flickering on boot
- media/tda10071: correct delivery system to DVB-S/S2
- media: fix initialization on Hauppauge WinTV Nova HD-S2 and similar hardware
- update defconfigs
- update to 3.3 final

* Sat Mar 10 2012 tmb <tmb> 3.3.0-0.rc7.1.mga2
+ Revision: 222555
- update to 3.3-rc7
- re-enable some more nics that got disabled by mistake
- re-enable MACVLAN and VETH (#4833)

* Mon Mar 05 2012 tmb <tmb> 3.3.0-0.rc6.1.mga2
+ Revision: 219069
- remove c6x arch from source tarball
- fix mach64 build with 3.3 series
- update defconfigs
- update unionfs to 2.5.11
- fix ndiswrapper build with 3.3 series kernels
- update to ndiswrapper 1.57 final
- update filelists
- rediff patches to apply cleanly
- drop merged patches
- update to 3.3-rc6

* Sat Mar 03 2012 tmb <tmb> 3.2.9-2.mga2
+ Revision: 217219
- rebuild with new gcc
- sync in current -stable queue (14 fixes)

* Thu Mar 01 2012 tmb <tmb> 3.2.9-1.mga2
+ Revision: 216396
- obsolete dkms-lzma
- require dracut >= 017-1
- add another needed fix for r8172u wireless driver in staging (#4491)
- drop merged fixes
- update to 3.2.9

* Sat Feb 25 2012 tmb <tmb> 3.2.7-1.mga2
+ Revision: 214713
- PCI: workaround hard-wired bus number
- mac80211: Fix a rwlock bad magic bug
- fix nonworking r8172u wireless driver in staging (#4491)
- enable PRINTK_TIME by default to help debugging boot delays
- drop merged patches
- update to 3.2.7

* Thu Feb 16 2012 tmb <tmb> 3.2.6-3.mga2
+ Revision: 209763
- rebuild for missing kmod provides
- require dracut >= 016-1 for more needed fixes
- fix modules.description generation with .xz modules

* Tue Feb 14 2012 tmb <tmb> 3.2.6-2.mga2
+ Revision: 208929
- require dracut >= 015-2 to get the latest fixes
- pull in current -stable queue (20 fixes)
- add post and preun service calls for cpupower in kernel-tools package
- require dracut >= 015-1 for support of xz compressed modules
- compress modules with xz
- update to 3.2.6 final
- compress symvers files in /boot with xz

* Sun Feb 12 2012 tmb <tmb> 3.2.6-0.rc1.1.mga2
+ Revision: 207659
- ath9k: stop on rates with idx -1 in ath9k rate control's .tx_status
- ath9k_hw: fix a RTS/CTS timeout regression
- ath9k: fix a WEP crypto related regression (# 4309)
- update to 3.2.6-rc1
- enable PPS_CLIENT_LDISC (mga #4221)

* Mon Feb 06 2012 tmb <tmb> 3.2.5-1.mga2
+ Revision: 205596
- pull in carl9170-firmware too as it's not in upstream kernel-firmware yet (#2386)
- update to 3.2.5
  * drop merged ASPM rework patch
- correct requires: module-init-tools >= 3.16-14 for xz support

* Thu Jan 26 2012 tmb <tmb> 3.2.2-1.mga2
+ Revision: 201806
- drop merged patches
- update to 3.2.2 (CVE-2012-0056)

* Fri Jan 20 2012 tmb <tmb> 3.2.1-2.mga2
+ Revision: 198861
- BR module-init-tools >= 3.6-14 for xz support
- add support for compressing modules with xz (disabled until dracut gets support)
- compress desktop* and server kernels with XZ (even xen supports it since v4.0)
- enable xen support on x86_64 kernel-desktop
- require module-init-tools >= 3.6-14 for xz support
- require dracut instead of mkinitrd

* Sun Jan 15 2012 tmb <tmb> 3.2.1-1.mga2
+ Revision: 196371
- fix groups on on kernel-utils(-devel)
- add BR docbook-style-xsl
- add patches from -stable queue (51 fixes all over the kernel)
- add kernel-tools(-devel) packages providing perf and cpupower tools (#3413)
- drop kernel-xen-pvops flavour as kernel-server provides all that is needed
  * kernel-server-latest now obsoletes kernel-xen-pvops-latest
  * kernel-server-devel-latest now obsoletes kernel-xen-pvops-devel-latest
- sync xen config with fedora
- update to 3.2.1

* Thu Jan 05 2012 tmb <tmb> 3.2.0-1.mga2
+ Revision: 191540
- update to 3.2 final
- require newest kernel-firmware
- obsolete dkms-r8192se as it is merged upstream
- upstream tarball is now compressed with xz

* Wed Dec 28 2011 tmb <tmb> 3.2.0-0.rc7.2.mga2
+ Revision: 188492
- update to latest upstream git including: drm/i915: Disable RC6 on
  Sandybridge by default (371de6e4e0042adf4f9b54c414154f57414ddd37)
- disable SQUASHFS_4K_DEVBLK_SIZE as it breaks livecd builds

* Sun Dec 25 2011 tmb <tmb> 3.2.0-0.rc7.1.mga2
+ Revision: 187363
- ndiswrapper: fix build with 3.2 series kernels
- unionfs: convert ->i_nlink usage to set_nlink()
- drm/mach64: module.h must now be included directly
- update defconfigs
- add fixes for radeon and vmwgfx from upstream git headed for 3.2 final
- update filelists
- rebase patches to apply cleanly
- drop merged patches
- update to 3.2-rc7
- make sure -devel rpm is installed before triggering dkms rebuild

* Sat Dec 24 2011 tmb <tmb> 3.1.6-2.mga2
+ Revision: 187103
- update netbook summary and description too regarding memory usage
- sync with current stable queue (38 fixes to all over the kernel)

* Thu Dec 22 2011 tmb <tmb> 3.1.6-1.mga2
+ Revision: 185703
- update to 3.1.6 final
- enable ISDN in netbook config (#3367)
- switch transparent hugepages from on by default to madvise (only enabled
  for apps that requests it), as it fixes desktop freeze when accessing
  slow media such as usb (thanks to fbui/mdv mail on @cooker ml).
- update desktop(586) summaries and descriptions to point out that only
  3-3.5GB RAM is detected on 32bit, and that server kernel is needed to
  fully support 4GB or more
- drop defattr and buildroot
- trigger dkms build in posttrans so modules get built at kernel install
  instead of at boot (speeds up boot time with new kernel)

* Fri Dec 16 2011 tmb <tmb> 3.1.6-0.rc1.1.mga2
+ Revision: 182783
- bump requires on kernel-firmware
- drop merged drm and xfs patches
- update to 3.1.6-rc1

* Mon Dec 05 2011 tmb <tmb> 3.1.4-2.mga2
+ Revision: 176941
- rebuild with gcc-4.6.2
+ blino <blino>
- IFWLOG: fix return value of checkentry (not properly modified in 2.6.35+ patch, #3594)

* Tue Nov 29 2011 tmb <tmb> 3.1.4-1.mga2
+ Revision: 174077
- update to 3.1.4
  * reverts usb patch that broke isochronous devices
    (i.e. webcam, audio, or other streaming devices)

* Sun Nov 27 2011 tmb <tmb> 3.1.3-1.mga2
+ Revision: 172918
- xfs fixes from upstream:
  * don't serialise direct IO reads on page cache checks
    (fixes performance regression introduced in 2.6.38)
  * avoid direct I/O write vs buffered I/O race
  * return -EIO when xfs_vn_getattr() failed
  * fix buffer flushing during unmount
  * fix possible memory corruption in xfs_readlink
  * use doalloc flag in xfs_qm_dqattach_one()
- drm fixes from stable queue:
  * fix integer overflow in drm_mode_dirtyfb_ioctl()
  * radeon/kms: fix up gpio i2c mask bits for r4xx for real
  * i915: Ivybridge still has fences
  * i915: Turn on a required 3D clock gating bit on Sandybridge
  * i915: Turn on another required clock gating bit on Sandybridge
- update to 3.1.3

* Sun Nov 20 2011 tmb <tmb> 3.1.2-0.rc1.1.mga2
+ Revision: 170001
- update to 3.1.2-rc1
- pci: rework ASPM disable code
- drm/i915: Fix inconsistent backlight level during disabled
- update to 3.1.1 final

* Thu Nov 10 2011 tmb <tmb> 3.1.1-0.rc1.1.mga2
+ Revision: 166212
- update to 3.1.1-rc1
  * rediff unionfs patch
  * drop merged patches
  * update defconfigs

* Tue Nov 01 2011 tmb <tmb> 3.1.0-2.mga2
+ Revision: 161124
- md/raid10: Fix bug when activating a hot-spare.
- md/raid5: fix bug that could result in reads from a failed device.
- enable PM_RUNTIME and USB_SUSPEND

* Mon Oct 24 2011 tmb <tmb> 3.1.0-1.mga2
+ Revision: 157691
- update to 3.1 final

* Tue Oct 18 2011 tmb <tmb> 3.1.0-0.rc10.1.mga2
+ Revision: 156037
- update to 3.1-rc10
- drop merged patches
- re-enable usblp as it is needed by both usb-pp adapters and some printers (mga #2240, #2264)
  (cups is patched to work with both usblp and libusb)

* Thu Oct 06 2011 tmb <tmb> 3.1.0-0.rc9.1.mga2
+ Revision: 152256
- fix ndiswrapper Makefile
- remove openrisc arch
- more defconfig updates
- SCSI: libsas: fix panic when single phy is disabled on a wide port
  SCSI: qla2xxx: Fix crash in qla2x00_abort_all_cmds() on unload
- Input: wacom - revert 'Cintiq 21UX2 does not have menu strips'
- update ndiswrapper to 1.57-rc1 and drop merged patches
- update unionfs to 2.5.10
- update defconfigs
- drop merged: media-video-uvc-fix-init-hang.patch
- drop merged patch:
  scripts-headers_install-fix-__packed-in-exported-kernel-headers.patch
- drop patch: sound-alsa-hda_intel-prealloc-4mb-dmabuffer.patch
  (it's replaced by the upstream SND_HDA_PREALLOC_SIZE config option)
- rediff patches to apply cleanly
- rediff unionfs patch
- update to 3.1-rc9

* Mon Oct 03 2011 tmb <tmb> 3.0.6-1.mga2
+ Revision: 151408
- fix boot hang on uvc webcam init (mga #2425)
- update to 3.0.6
- ndiswrapper: add IoUnregisterPlugPlayNotification symbol (mga #2162)

* Mon Aug 29 2011 tmb <tmb> 3.0.4-1.mga2
+ Revision: 136300
- update to 3.0.4
- headers_install: fix __packed in exported kernel headers
- btrfs: btrfs_calc_avail_data_space: cope with no read/write devices
- update to 3.0.3
- drop merged: net-wireless-iwlagn-5000-do-not-support-idle-mode.patch
- update to 3.0.2-rc1
- update to 3.0.1 final
- enable RT33XX/RT35XX pci/usb support
- iwlagn: 5000 do not support idle mode
- drop debug-latest rpms as they are not really used
- rename debug rpms so the name ends with -debug like all other debug packages
- update to 3.0.1-rc1
- build with -s(ilent) so only warnings and errors gets logged
- fix build with -stable -rc patches
- drop obsolete conflicts/obsoletes
- remove powerpc and sparc support (already disabled)
- convert -source rpm to noarch
- release 3.0 final
- samsung-laptop: add support for NC110, NC210, R700 and X520
- samsung-laptop: fix detection of N150/N210/N220 models (mga #2175)
- disable SOUND_OSS_CORE_PRECLAIM to allow osspd to work (request by Coling Guthrie)
- prepare for 3.0 final
- drop uclevel define as its unused
- drop kstable defines as sublevel will be used for stable patches

* Sun Jul 17 2011 tmb <tmb> 3.0.0-0.rc7.5.1.mga2
+ Revision: 125370
- update to 3.0-rc7-git5 (fixes 32bit sched race/hang and a possible rcu hang/crash)

* Fri Jul 15 2011 tmb <tmb> 3.0.0-0.rc7.2.1.mga2
+ Revision: 124486
- update filelists
- rediff patch disabling mrproper in -devel rpms
- disable acerhk on x86_64 as it contains unsafe asm code
- fix mach64, ndiswrapper, ppscsi, rfswitch and viahss builds for linix-3.0
- update defconfigs
- update unionfs to 2.5.9.2
- disable aufs2 for now (broken)
- disable framebuffer oops fixes for now to verify if they are still needed
- rediff patches:
  3rd-3rdparty-merge.patch
  acpi-add-proc-event-regs.patch
  arm_fix_bad_udelay_usage.patch
  net-netfilter-psd.patch
  net-netfilter-psd-mdv.patch
  platform-x86-add-shuttle-wmi-driver.patch
  x86-cpufreq-speedstep-dothan-3.patch
  x86-p4_clockmod-reasonable-default-for-scaling_min_freq.patch
- drop merged patch:
  net-usb-rndis_host-poll-status-channel-before-control-channel.patch
- drop obsolete patch:
  mv643xx_eth_csum_part2.patch
- update to 3.0-rc7-git2
  * drop merged patches:
    ata-ahci-Intel-Panther-Point-ids.patch
    ata-ata_piix-Intel-Panther-Point-ids.patch
    block-blkdev_get-should-access-bd_disk-only-after.patch
    block-export-blk_-get-put-_queue.patch
    fs-ext4-init-timer-earlier-to-avoid-a-kernel-panic-in-__save_error_info_CVE-2011-2493.patch
    fs-fat-fix-corrupt-inode-flags-when-remove-attr_sys-flag.patch
    fs-proc-restrict-access-to-proc-PID-io_CVE-2011-2495.patch
    gpu-drm-i915-add-a-no-lvds-quirk-for-the-asus-eeebox-pc-eb1007.patch
    gpu-drm-i915-Avoid-unmapping-pages-from-a-NULL-address-s.patch
    gpu-drm-i915-dp-Sanity-check-eDP-existence.patch
    gpu-drm-i915-Enable-GPU-semaphores-by-default.patch
    gpu-drm-i915-Fix-tiling-corruption-from-pipelined-fencin.patch
    gpu-drm-i915-Restore-missing-command-flush-before-interr.patch
    gpu-drm-radeon-kms-fix-for-radeon-on-systems-4gb-without.patch
    gpu-drm-radeon-kms-viewport-height-has-to-be-even.patch
    gpu-drm-Retry-i2c-transfer-of-EDID-block-after-failure.patch
    hwmon-coretemp-relax-target-temperature-range-check.patch
    kernel-taskstats-dont-allow-duplicate-entries-in-listener-mode_CVE-2011-2484.patch
    mm-ksm-fix-race-between-ksmd-and-exiting-task-CVE-2011-2183.patch
    net-bluetooth-l2cap-and-rfcomm-fix-1-byte-infoleak-to-userspace_CVE-2011-2492.patch
    net-bluetooth-Prevent-buffer-overflow-in-l2cap-config-request_CVE-2011-2497.patch
    net-ipv4-check-for-mistakenly-passed-in-non-ipv4-address.patch
    net-ipv4-inet_diag-fix-inet_diag_bc_audit_CVE-2011-2213.patch
    net-netfilter-ipset-6.2.patch
    net-netfilter-ipset-6.4.patch
    net-r8169-add-a-new-chip-for-RTL8105.patch
    net-r8169-add-a-new-chip-for-RTL8168DP.patch
    net-r8169-Be-verbose-when-unable-to-load-fw.patch
    net-r8169-support-RTL8168E-RTL8111E.patch
    net-r8169-support-the-new-chips-for-RTL8105E.patch
    net-wireless-ath9k-Fix-a-locking-related-issue.patch
    net-wireless-ath9k-fix-two-more-bugs-in-tx-power.patch
    net-wireless-ath9k-reset-chip-on-baseband-hang.patch
    net-wireless-ath9k-set-40-mhz-rate-only-if-hw-is-configured-in-ht40.patch
    net-wireless-nl80211-fix-check-for-valid-ssid-size-in-scan-operations_CVE-2011-2517.patch
    net-wireless-nl80211-fix-overflow-in-ssid_len_CVE-2011-2517.patch
    pci-intel-iommu-add-domain-check-in-domain_remove_one_dev_info.patch
    pci-intel-iommu-check-for-identity-mapping-candidate-using.patch
    pci-intel-iommu-dont-cache-iova-above-32bit.patch
    pci-intel-iommu-flush-unmaps-at-domain_exit.patch
    pci-intel-iommu-only-unlink-device-domains-from-iommu.patch
    pci-intel-iommu-remove-host-bridge-devices-from-identity.patch
    pci-intel-iommu-speed-up-processing-of-the-identity_mapping.patch
    pci-intel-iommu-use-coherent-dma-mask-when-requested.patch
    platform-x86-hp-wmi-add-rfkill-support-for-wireless-query-0x1b.patch
    platform-x86-hp-wmi-allow-setting-input-and-output-buffer-sizes-s.patch
    platform-x86-hp-wmi-check-query-return-value-in-hp_wmi_perform_qu.patch
    platform-x86-hp-wmi-clear-rfkill-device-pointers-when-appropriate.patch
    platform-x86-hp-wmi-make-rfkill-initialization-failure-non-fatal.patch
    platform-x86-hp-wmi-remove-a-variable-that-is-never-read.patch
    platform-x86-hp-wmi-split-rfkill-initialization-out-of-hp_wmi_bio.patch
    platform-x86-samsung-laptop-add-support-for-N230-model.patch
    platform-x86-samsung-laptop-make-dmi_check_cb-to-return-1-instead-of-0.patch
    platform-x86-samsung-laptop.patch
    platform-x86-samsung-laptop-Samsung-R410P-backlight-driver.patch
    revert-dell-laptop-Toggle-the-unsupported-hardware-killswitch.patch
    revert-usb-option-add-id-for-zte-mf-330.patch
    scsi-fix-oops-caused-by-queue-refcounting-failure.patch
    security-tomoyo-fix-oops-in-tomoyo_mount_acl.patch
    usb-cdc-acm-adding-second-acm-channel-support-for-nokia-e7.patch
    usb-core-tolerate-protocol-stall-during-hub-and-port.patch
    usb-option-add-alcatel-x200-to-sendsetup-blacklist.patch
    usb-option-add-blacklist-for-zte-k3765-z-19d2-2002.patch
    usb-option-add-prolink-ph300-modem-ids.patch
    usb-option-add-zoom-4597-modem-usb-ids.patch
    usb-serial-add-another-4n-galaxy.de-pid-to-ftdi_sio-driver.patch
    usb-storage-redo-incorrect-reads.patch
    usb-usbnet-cdc_ncm-add-missing-.reset_resume-hook.patch
    video-fix-use-after-free-by-vga16fb-on-rmmod.patch
    watchdog-iTCO_wdt-add-Intel-Panther-Point-support.patch
    x86-amd-iommu-fix-3-possible-endless-loops.patch
    x86-amd-iommu-fix-boot-crash-with-hidden-pci-devices.patch
    x86-amd-iommu-use-only-per-device-dma_ops.patch
    xen-irq-implement-bind_interdomain_evtchn_to_irqhandler-for-backend-drivers.patch
    xen-network-backend-driver.patch
    xen-off-by-one-errors-in-multicalls.c.patch

* Fri Jul 08 2011 tmb <tmb> 2.6.38.8-5.mga2
+ Revision: 120242
- rebuild for missing packages

* Thu Jul 07 2011 tmb <tmb> 2.6.38.8-4.mga2
+ Revision: 119919
- fix non-expanding xen-pvops macros
- net/ipv4: Check for mistakenly passed in non-IPv4 address
- Bluetooth: Prevent buffer overflow in l2cap config request (CVE-2011-2497)
- Bluetooth: l2cap and rfcomm: fix 1 byte infoleak to userspace (CVE-2011-2492)
- proc: restrict access to /proc/PID/io (CVE-2011-2495)
- ext4: init timer earlier to avoid a kernel panic in __save_error_info (CVE-2011-2493)
- nl80211: fix overflow in ssid_len (CVE-2011-2517)
- TOMOYO: Fix oops in tomoyo_mount_acl() (CVE-2011-2518)
- inet_diag: fix inet_diag_bc_audit() (CVE-2011-2213)
- taskstats: don't allow duplicate entries in listener mode (CVE-2011-2484)

* Tue Jun 14 2011 tmb <tmb> 2.6.38.8-2.mga2
+ Revision: 106310
- add mgaver to 'uname -r'
- ath9k: revert changes that crashes the kernel (mga #144, regression since 2.6.35)
- xen: fix off by one errors in multicalls.c
- video: Fix use-after-free by vga16fb on rmmod
- nl80211: fix check for valid SSID size in scan operations (CVE-2011-2517)
- fat: Fix corrupt inode flags when remove ATTR_SYS flag
- intel-iommu: Flush unmaps at domain_exit
- intel-iommu: Only unlink device domains from iommu
- intel-iommu: Check for identity mapping candidate using system dma mask
- intel-iommu: Speed up processing of the identity_mapping function
- intel-iommu: Dont cache iova above 32bit
- intel-iommu: Use coherent DMA mask when requested
- intel-iommu: Remove Host Bridge devices from identity mapping
- intel-iommu: Add domain check in domain_remove_one_dev_info
- x86/amd-iommu: Fix 3 possible endless loops
- x86/amd-iommu: Use only per-device dma_ops
- x86/amd-iommu: Fix boot crash with hidden PCI devices
- usb: core: Tolerate protocol stall during hub and port status read
- usb-storage: redo incorrect reads
- usbnet/cdc_ncm: add missing .reset_resume hook
- usb: cdc-acm: Adding second ACM channel support for Nokia E7 and C7
- usb: serial: add another 4N-GALAXY.DE PID to ftdi_sio driver
- option: add Zoom 4597 modem USB IDs
- option: add Alcatel X200 to sendsetup blacklist
- option: add Prolink PH300 modem IDs
- option: Add blacklist for ZTE K3765-Z
- Revert "USB: option: add ID for ZTE MF 330" as its a usb hub
- ath9k: fix two more bugs in tx power
- ath9k: Reset chip on baseband hang
- ath9k: set 40 Mhz rate only if hw is configured in ht40
- drm/i915: Add a no lvds quirk for the Asus EeeBox PC EB1007
- drm/radeon/kms: viewport height has to be even
- drm/radeon/kms: fix for radeon on systems >4GB without hardware iommu

* Tue Jun 07 2011 tmb <tmb> 2.6.38.8-1.mga2
+ Revision: 101625
- block: export blk_{get,put}_queue()
- block: blkdev_get() should access ->bd_disk only after success
- scsi:  Fix oops caused by queue refcounting failure
- hwmon: coretemp: Relax target temperature range check
- ksm: fix race between ksmd and exiting task (CVE-2011-2183)
- update to 2.6.38.8 (CVE-2011-1017)
- drop merged patches

* Sun May 22 2011 tmb <tmb> 2.6.38.7-1.mga1
+ Revision: 100106
- r8169: add a new chip for RTL8105
- r8169: add a new chip for RTL8168DP
- r8169: add support for RTL8168E/RTL8111E
- update to 2.6.38.7 final (CVE-2011-1770, CVE-2011-1776, CVE-2011-1927, CVE-2011-2496)
- drop merged stable-queue fixes

* Thu May 19 2011 tmb <tmb> 2.6.38.6-2.mga1
+ Revision: 99781
- watchdog: iTCO_wdt: TCO Watchdog patch for Intel Panther Point PCH
- more stable fixes
  * cifs: clean up various nits in unicode routines
  * cifs: fix cifsConvertToUCS() for the mapchars case
  * iwlegacy: fix IBSS mode crashes
- merge current stable queue:
  * ARM: zImage: make sure the stack is 64-bit aligned
  * ASoC: SSM2602: Fix 'Mic Boost2' control
  * ASoC: UDA134x: Remove POWER_OFF_ON_STANDBY define
  * block: rescan partitions on invalidated devices on -ENOMEDIA too
  * can: fix SJA1000 dlc for RTR packets
  * cdrom: always check_disk_change() on open
  * cifs: add fallback in is_path_accessible for old servers
  * cifs: Fix memory over bound bug in cifs_parse_mount_options
  * clocksource: Install completely before selecting
  * dccp: handle invalid feature options length (CVE-2011-1770)
  * drm/radeon/kms: fix extended lvds info parsing
  * ehea: Fix memory hotplug oops
  * ehea: fix wrongly reported speed and port
  * media: Fix cx88 remote control input
  * hydra: Fix regression caused during net_device_ops conversion
  * ipheth: Properly distinguish length and alignment in URBs and skbs
  * libata: fix oops when LPM is used with PMP
  * libertas: fix cmdpendingq locking
  * megaraid_sas: Sanity check user supplied length before passing it to
    dma_alloc_coherent()
  * mm: use alloc_bootmem_node_nopanic() on really needed path
  * ne-h8300: Fix regression caused during net_device_ops conversion
  * net: dev_close() should check IFF_UP
  * net: ip_expire() must revalidate route (CVE-2011-1927)
  * net: slip, fix ldisc->open retval
  * PCH_GbE : Fixed the issue of checksum judgment
  * PCH_GbE : Fixed the issue of collision detection
  * pch_gbe: support ML7223 IOH
  * PM: Fix warning in pm_restrict_gfp_mask() during SNAPSHOT_S2RAM ioctl
  * PM / Hibernate: Fix ioctl SNAPSHOT_S2RAM
  * PM / Hibernate: Make snapshot_release() restore GFP mask
  * rapidio: fix default routing initialization
  * Revert "mmc: fix a race between card-detect rescan and clock-gate work
    instances"
  * rtc-s3c: fixup wake support for rtc
  * scsi: Revert "[SCSI] Retrieve the Caching mode page"
  * Revert "x86, AMD: Fix APIC timer erratum 400 affecting K8 Rev.A-E
    processors"
  * slcan: fix ldisc->open retval
  * tick: Clear broadcast active bit when switching to oneshot
  * tmpfs: fix off-by-one in max_blocks checks
  * tmpfs: fix race between swapoff and writepage
  * tmpfs: fix race between umount and swapoff
  * tmpfs: fix race between umount and writepage
  * tmpfs: fix spurious ENOSPC when racing with unswap
  * media/v4l: Release module if subdev registration fails
  * vmxnet3: Consistently disable irqs when taking adapter->cmd_lock
  * vmxnet3: Fix inconsistent LRO state after initialization
  * x86, AMD: Fix ARAT feature setting again
  * x86, apic: Fix spurious error interrupts triggering on all non-boot APs
  * x86: Fix UV BAU for non-consecutive nasids
  * x86, mce, AMD: Fix leaving freed data in a list
  * zorro8390: Fix regression caused during net_device_ops conversion
+ rtp <rtp>
- Revert to unionfs 2.5.8 until 2.5.9 problems are solved (cf bug #1326 and
  unionfs ml)

* Tue May 10 2011 tmb <tmb> 2.6.38.6-1.mga1
+ Revision: 97089
- merge current stable queue:
  cifs: change bleft in decode_unicode_ssetup back to signed type
  cifs: check for bytes_remaining going to zero in CIFS_SessSetup
  cifs: handle errors from coalesce_t2
  cifs: refactor mid finding loop in cifs_demultiplex_thread
  cifs: sanitize length checking in coalesce_t2
  drm/radeon/kms: add pci id to acer travelmate quirk for 5730
  drm/radeon/kms: fix gart setup on fusion parts (v2) backport
  drm/i915/dp: Be paranoid in case we disable a DP before it is attached
  drm/i915/lvds: Only act on lid notify when the device is on
  drm/i915: Release object along create user fb error path
  efi: Validate size of EFI GUID partition entries (CVE-2011-1776)
  hw_breakpoints, powerpc: Fix CONFIG_HAVE_HW_BREAKPOINT off-case in ptrace_set_debugreg()
  iwlwifi: add {ack, plpc}_check module parameters
  ptrace: Prepare to fix racy accesses on task breakpoints
  thinkpad-acpi: module autoloading for newer Lenovo ThinkPads
  vm: Don't lock guardpage if the stack is growing up
  vm: fix vm_pgoff wrap in upward expansion
  x86, hw_breakpoints: Fix racy access to ptrace breakpoints
- revert: "dell-laptop: Toggle the unsupported hardware killswitch"
  as it causes regressions on existing hw (reported by Colin Guthrie)
- drop Amd K8 erratum 400 fix (merged)
- update to 2.6.38.6
- clean /lib/modules tree on uninstall
- disable ACPI_PROCFS_POWER as its obsoleted by the sysfs interface

* Tue May 03 2011 tmb <tmb> 2.6.38.5-1.mga1
+ Revision: 94519
- update unionfs to 2.5.9
- update to 2.6.38.5 (CVE-2011-2479, CVE-2011-2498)

* Sat Apr 30 2011 tmb <tmb> 2.6.38.5-0.rc1.1.mga1
+ Revision: 93738
- raise default vmalloc area to 192MB (Anssi, #904)
- r8169: be verbose when unable to load firmware
- samsung-laptop: drop backlight type setting patch as its 2.6.39 specific
- r8169: add support for RTL8105E
- samsung-laptop: set backlight type and add support for N230, R410P
- x86, AMD: K8 Rev.A-E processors are subject to erratum 400
- enable DEBUG_RODATA and DEBUG_SET_MODULE_RONX
- update to 2.6.38.5-rc1
- hp-wmi: add support for rfkill on HP Mini 5102 (Anssi)

* Fri Apr 22 2011 tmb <tmb> 2.6.38.4-1.mga1
+ Revision: 89804
- enable radeon kernel modesetting
- add aliases for old ieee1394 modules to the new firewire stack
- add ide/ahci/raid ids for Intel Panther Point
- update ipset to 6.4 (includes ipv6 support)
- intel_ips: fix monitor thread to use TASK_INTERRUPTIBLE
- disable powersaving on rt2800 as it is broken (noted by rtp)
- update aufs to aufs2.1-38 stable branch
- update to 2.6.38.4 (CVE-2011-2496)

* Sat Apr 16 2011 tmb <tmb> 2.6.38.3-1.mga1
+ Revision: 86561
- drm/radeon/kms: fix suspend on rv530 asics
- drm/radeon/kms: pll tweaks for rv6xx
- vm: fix mlock() on stack guard page
- vm: fix vm_pgoff wrap in stack expansion
- update 'drm/i915: Fix tiling corruption from pipelined fencing'
- drm: Retry i2c transfer of EDID block after failure
- drm/i915/dp: Sanity check eDP existence
- drm/i915: Restore missing command flush before interrupt on BLT ring
- drm/i915: Avoid unmapping pages from a NULL address space
- drm/i915: Enable GPU semaphores by default
- update to 2.6.38.3 final (CVE-2011-2496)
- drop merged xen revert patch
- re-enable debug

* Tue Apr 12 2011 tmb <tmb> 2.6.38.3-0.rc1.1.mga1
+ Revision: 84037
- add missing virtual provides
- revert: 'x86-64, mm: Put early page table high' as it breaks xen
- rediff HP Compaq DC7900 alsa patch
- update to 2.6.38.3-rc1
- drop merged patches

* Mon Apr 11 2011 tmb <tmb> 2.6.38.2-4.mga1
+ Revision: 83133
- add xen netdev backend support
- compress patch tarball with xz
- ath9k: fix a chip wakeup related crash in ath9k_start
- add xen-pvops kernel
- spec cleanup
+ rtp <rtp>
- import arm support. The kernel can build iop32x, kirkwood and versatile (qemu)
  kernels but build only kirkwood and versatile atm.

* Sat Apr 02 2011 tmb <tmb> 2.6.38.2-2.mga1
+ Revision: 79847
- add module_alias matching old dm-raid45
- ALSA: Fix yet another race in disconnection
- ALSA: hda - Fix SPDIF out regression on ALC889
- ALSA: vmalloc buffers should use normal mmap
- ath9k: Fix kernel panic in AR2427
- cciss: fix lost command issue
- crypto: aesni-intel - fix problem with packets that are not multiple of 64b
- eCryptfs: ecryptfs_keyring_auth_tok_for_sig() bug fix
- eCryptfs: Unlock page in write_begin error path
- mac80211: initialize sta->last_rx in sta_info_alloc
- myri10ge: fix rmmod crash
- PCI/ACPI: Report ASPM support to BIOS if not disabled from command line
- perf: Better fit max unprivileged mlock pages for tools needs
- scsi/ses: Avoid kernel panic when lun 0 is not mapped
- scsi/ses: show devices for enclosures with no page 7
- sound/oss/opl3: validate voice and channel indexes
- x86-64, mm: Put early page table high
- drop -devel provides from -source as dkms fails to build correctly with -source
- Relax si_code check in rt_sigqueueinfo and rt_tgsigqueueinfo
- Revert "x86: Cleanup highmap after brk is concluded",
  as it causes systems to freeze on resume
- restore framebuffer oops and deadlock fixes by Herton as
  they seem to work better than the Ubuntu one (mdv#62864)

* Mon Mar 28 2011 tmb <tmb> 2.6.38.2-1.mga1
+ Revision: 78347
- update to 2.6.38.2 (CVE-2011-0726)
- add kernel-netbook build (mga #313)

* Thu Mar 24 2011 tmb <tmb> 2.6.38.1-1.mga1
+ Revision: 76866
- drm/i915: Fix pipelined fencing (colin, fdo bug #34584)
- enable ath9k debugging
- ath9k: Fix a locking related issue
- update to 2.6.38.1

* Sun Mar 20 2011 tmb <tmb> 2.6.38-1.mga1
+ Revision: 74958
- add 70 fixes from upstream -stable queue
- rediff S2 to apply cleanly
- fix acerhk build with 2.6.38 series kernels
- update filelists
- fix ndiswrapper build with 2.6.38
- update aufs2 to 2.6.38-rc
- update defconfigs
- rediff 3rd-3rdparty-merge.patch
- rediff fs-aufs2.1-for-2.6.37.patch
- rediff platform-x86-add-shuttle-wmi-driver.patch
- rediff char-agp-intel-new-Q57-id.patch
- rediff acpi-video-add-blacklist-to-use-vendor-driver.patch
- rediff acpi-add-proc-event-regs.patch
- rediff x86-pci-toshiba-equium-a60-assign-busses.patch
- update unionfs to 2.5.8
- update samsung-laptop driver
- drop old samsung-backlight driver
- update plymouth framebuffer oops fix (from ubuntu)
- disable broken docomo patches
- update to 2.6.38
   * drop merged patches:
     block-fix-mis-synchronisation-in-blkdev_issue_zeroout.patch
     btrfs-deal-with-short-returns-from-copy_from_user.patch
     dm-crypt-scale-to-multiple-CPUs-v5-2.6.36.patch
     drm-i915-fix-calculation-of-backlight-value-in-combined-mode.patch
     fs-squashfs-add-XZ-compression-configuration-option.patch
     fs-squashfs-add-XZ-compression-support.patch
     fs-squashfs-fix-use-of-uninitialised-variable-in-zlib-and-xz-decompressors.patch
     idle-intel_idle-update-Sandy-Bridge-core-C-state-residency-targets.patch
     kbuild-do-not-remove-a.out-kvm.h-and-kvm_para.h-on-headers_install_all.patch
     kernel-sched-autogroup-Fix-reference-leak.patch
     kernel-sched-automated-per-session-task-groups-20101130.patch
     kernel-sched-fix-potential-access-to-freed-memory.patch
     kernel-sched-Fix-struct-autogroup-memory-leak.patch
     lib-decompressors-add-boot-time-XZ-support.patch
     lib-decompressors-add-XZ-decompressor-module.patch
     net-wireless-ath9k-fix-race-conditions-when-stop-device.patch
     net-wireless-rtl8187-avoid-redundant-write-to-register-FF72.patch
     net-wireless-rtl8187-consolidate-anaparam-on-off-write-sequences.patch
     net-wireless-rtl8187-do-not-do-per-packet-TX-AGC.patch
     net-wireless-rtl8187-don-t-set-RTL818X_CONFIG3_GNT_SELECT.patch
     net-wireless-rtl8187-fix-wrong-register-initialization-in-8187B.patch
     net-wireless-rtl8187-move-pll-reset-at-start-out-of-ANAPARAM-write.patch
     net-wireless-rtl8187-remove-redundant-initialization-of-ARFR.patch
     net-wireless-rtl8187-remove-setting-of-beacon-atim-regs-from-init.patch
     net-wireless-rtl8187-remove-uneeded-setting-of-anaparam-write.patch
     net-wireless-rtl8187-restore-anaparam-registers-after-reset.patch
     net-wireless-zd1201-add-id.patch
     net-wireless-zd1211rw-add-id.patch
     nfs-fix-compilation-warning.patch
     nfs-nfsroot-should-default-to-proto-udp.patch
     x86-support-XZ-compressed-kernel.patch

* Tue Mar 15 2011 tmb <tmb> 2.6.37.4-1.mga1
+ Revision: 71895
- block: fix mis-synchronisation in blkdev_issue_zeroout()
- btrfs: deal with short returns from copy_from_user
- drm/i915: Fix calculation of backlight value in combined mode
- nfs: nfsroot should default to: proto=udp
- nfs: fix compilation warning
- update to 2.6.37.4

* Tue Mar 08 2011 tmb <tmb> 2.6.37.3-1.mga1
+ Revision: 66712
- add Mageia framebuffer boot logo
- update to 2.6.37.3 (CVE-2011-1013, CVE-2011-1076)
  * drop merged patches:
    mm-prevent-concurrent-unmap_mapping_range-on-the-same-inode.patch
    net-ipv4-tcp-fix-inet_twsk_deschedule.patch
    usb-serial-usb_wwan-fix-tty-null-dereference.patch
    revert-bluetooth-enable-usb-autosuspend-by-default-on-btusb.patch
    staging-brcm80211-bugfix-for-softmac-crash-on-multi-cpu-configurations.patch
    staging-brcm80211-remove-assert-to-avoid-panic-since-2.6.37-kernel.patch

* Sat Feb 26 2011 tmb <tmb> 2.6.37.2-1.mga1
+ Revision: 60143
- fix aufs2 -devel includes
- add aufs2 support
- staging: brcm80211: remove assert to avoid panic since 2.6.37 kernel
- staging: brcm80211: bugfix for softmac crash on multi cpu configurations
- USB: serial/usb_wwan, fix tty NULL dereference
- Revert 'Bluetooth: Enable USB autosuspend by default on btusb'
- mm: prevent concurrent unmap_mapping_range() on the same inode
- tcp: fix inet_twsk_deschedule()
- ath9k: fix race conditions when stop device (#144)
- i586 server kernel and x86_64 kernels needs to be compressed with gzip
  so they work with xen (got broken during lzma -> xz update, noted by
  Guillaume Rousse on mdv kernel-discuss ml)
- update to 2.6.37.2
  * drop merged patch
    fs-xfs-fix-dquot-shaker-deadlock.patch

* Sat Feb 19 2011 tmb <tmb> 2.6.37.1-1.mga1
+ Revision: 54140
- xfs: fix dquot shaker deadlock
- drop merged patches:
  idle-intel_idle-open-broadcast-clock-event-to-fix-boot-hang.patch
  idle-intel_idle-fix-a-shutdown-regression.patch
- rediff patches:
  kernel-sched-automated-per-session-task-groups-20101130.patch
  kernel-sched-autogroup-Fix-reference-leak.patch
  kernel-sched-Fix-struct-autogroup-memory-leak.patch
- update to 2.6.37.1
- intel_idle: update Sandy Bridge core C-state residency targets
- intel_idle: open broadcast clock event to prevent boot hang
              due to local apic stalls
- intel_idle: fix a shutdown regression due to open broadcast fix

* Tue Jan 25 2011 tmb <tmb> 2.6.37-3.mga1
+ Revision: 38796
- drop obsoletes/provides for ancient mandriva releases
- Squashfs: Fix use of uninitialised variable in zlib & xz decompressors
- update defconfigs
- add xz support for kernel, initrd and squashfs
  (from upstream 2.6.38-rc1)
- drop lzma support (obsoleted by xz support)
- disable sparc and powerpc in buildscripts too
- unpack patches tarball
- convert 3rdparty tarballs to patches
- build only for i586 and x86_64 for now

* Sat Jan 08 2011 tmb <tmb> 2.6.37-2.mga1
+ Revision: 1280
- drop SOURCE5, not needed anymore
- imported package kernel
- Created package structure for kernel.